-
Notifications
You must be signed in to change notification settings - Fork 0
/
step1.html
69 lines (69 loc) ยท 2.43 KB
/
step1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS ์ฐ๊ฒฐ๋ถ๋ถ -->
<link rel="stylesheet" href="./step1.css" />
<!-- ๊ตฌ๊ธ FONT ์ฐ๊ฒฐ ๋ถ๋ถ -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap"
rel="stylesheet"
/>
<!-- ๊ตฌ๊ธ ICON ์ฐ๊ฒฐ ๋ถ๋ถ -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<title>Step1ํ์ด์ง ์
๋๋ค.</title>
</head>
<body>
<!-- step1_box ์์ ๋ถ๋ถ์
๋๋ค. -->
<div class="step1_box">
<!-- nav ๋ถ๋ถ์
๋๋ค. -->
<div class="nav">
<span class="time_1">2023-06-12</span>
<span class="time_2">์คํ 6์ 12๋ถ</span>
</div>
<!-- title ๋ถ๋ถ์
๋๋ค. -->
<div class="step1_title">
<p class="title">Step 1</p>
<p class="text">๋ฌธ์ ๊ฐ ๋ฐ์ํ ์ํ์ ์ ํํด์ฃผ์ธ์.</p>
</div>
<!-- ์ํ ๋ฐ์ค ๋ถ๋ถ์
๋๋ค. -->
<div class="product">
<div class="iptv">
<p class="iptv_text_1">IPTV</p>
<p class="iptv_text_2">(๋ฐฉ์ก, VOD, TV์ฑ, ๋ฆฌ๋ชจ์ปจ)</p>
</div>
<div class="internet">
<p class="internet_1">INTERNET</p>
<p class="internet_2">(๊ณต์ ๊ธฐ, ๊ฒ์ดํธ์จ์ด)</p>
</div>
<div class="iot">
<p class="iot_1">IoT</p>
<p class="iot_2">(๋ง์นด, ์๋ฉด๋ฑ, ๊ธ์๊ธฐ, ๋ฃจ๋ฏธ ๋ฑ)</p>
</div>
<!-- ์ด์ ์ ํํ๊ธฐ ๋ถ๋ถ์
๋๋ค. -->
<div class="issue">
<div class="issue_btn">
<a href="./step2.html">
<p>์ด์ ์ ํํ๊ธฐ</p>
</a>
</div>
</div>
</div>
<!-- Footer ๋ถ๋ถ์
๋๋ค. -->
<div class="footer">
<div class="footer_idon">
<span class="material-symbols-sharp"> arrow_back_ios_new </span>
<span class="material-symbols-sharp"> radio_button_unchecked </span>
<span class="material-symbols-sharp"> check_box_outline_blank </span>
</div>
</div>
</div>
</body>
</html>