-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (57 loc) · 2.03 KB
/
index.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
Pull request 연습용
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="description" content="width=device-width, initial-scale=1">
<title>Korean Wave</title>
<link rel="stylesheet" href="https://unpkg.com/ress/dist/ress.min.css">
<link href="CSS/style.css" rel="stylesheet">
<link rel="icon" type="image/png" href="images/favicon.png?">
</head>
<body>
<header>
<div id="home" class="big-bg">
<h2>체코슬로바키아어과 202102719학번 이지수</h2>
<h1>컴퓨터공학부를 이중전공 하고 있습니다</h1>
<h2>여기 수정하였습니다.</h2>
<h1><a href="index.html"><img class="logo" src="images/logo.png" alt="Korean Wave"></a></h1>
<nav>
<ul class="menu">
<li><a href="food.html">food</a></li>
<li><a href="attraction.html">attraction</a></li>
<li><a href="kpop.html">k-pop</a></li>
</ul>
</nav>
<ul class="menu_btn">
<li></li> <li></li> <li></li>
</ul>
</div>
</header>
<section class="home_image">
<img src="images/home-bg.png">
</section>
<section class="columns">
<div class="box">
<div class="column col_6 col_6">
<ul>
<li class="col_3"><img src="./images/box1.png"></li>
<li class="col_6">
<h3>다 같이</h3>
<p>빠져드는 한류의 매력</p>
</li>
</ul>
</div>
<div class="column col_6 col_6">
<ul>
<li class="col_3"><img src="./images/box2.png"></li>
<li class="col_6">
<h3>즐길 수 있는</h3>
<p>다채로운 음식, 명소, 음악까지</p>
</li>
</ul>
</div>
</div>
</section>
</body>
</html>