-
Notifications
You must be signed in to change notification settings - Fork 0
/
food.html
85 lines (79 loc) · 2.52 KB
/
food.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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="food" class="big-bg">
<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><br>
<form>
<h4>음식 검색 : <input type="search" placeholder="비빔밥" size="10">
<input type="button" value="지금 먹으러 가기" size="5"></h4>
</form>
<div class="wrapper grid">
<div class="item">
<img src="images/food1.png" alt="">
<h3>삼겹살</h3>
</div>
<div class="item">
<img src="images/food2.png" alt="">
<h3>불고기</h3>
</div>
<div class="item">
<img src="images/food3.png" alt="">
<h3>비빔밥</h3>
</div>
<div class="item">
<img src="images/food4.png" alt="">
<h3>김밥</h3>
</div>
<div class="item">
<img src="images/food5.png" alt="">
<h3>김치찌개</h3>
</div>
<div class="item">
<img src="images/food6.png" alt="">
<h3>삼계탕</h3>
</div>
<div class="item">
<img src="images/food7.png" alt="">
<h3>갈비찜</h3>
</div>
<div class="item">
<img src="images/food8.png" alt="">
<h3>떡볶이</h3>
</div>
<div class="item">
<img src="images/food9.png" alt="">
<h3>해물 파전</h3>
</div>
</div>
<footer>
<div class="wrapper">
<p><small>
주소 : 경기도 성남시 00구 123<br>
email : [email protected]<br>
© 2022 Subox
</small></p>
</div>
</footer>
</body>
</html>