-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage1.html
74 lines (64 loc) · 2.3 KB
/
page1.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
<!DOCTYPE HTML>
<html>
<head>
<title>우리들의 레시피</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<form method="post" action="#">
<div class="content">
<div class="inner">
<h1>우리들의 레시피</h1>
<p><blockquote>"레시피들을 공유하는 사람들이야 말로 진정히 맛을 즐기는 자이다."</blockquote></p>
<label for="food">음식을 입력해주세요</label>
<div class="form-group">
<input type="text" name="food" id="name" placeholder="닭도리탕" />
<input type="submit" value="검색" class="primary" />
</div>
</div>
</div>
</form>
<!-- 첫 번째 카테고리 -->
<section id="section">
<h3 class="major">시간</h3>
<ul class="actions">
<li><a href="#" class="button">5분</a></li>
<li><a href="#" class="button">10분</a></li>
<li><a href="#" class="button">20분</a></li>
<li><a href="#" class="button">30분</a></li>
<li><a href="#" class="button">1시간</a></li>
<li><a href="#" class="button">2시간</a></li>
</ul>
</section>
<section id="section">
<h3 class="major">분류</h3>
<ul class="actions">
<li><a href="#" class="button">한식</a></li>
<li><a href="#" class="button">중식</a></li>
<li><a href="#" class="button">일식</a></li>
<li><a href="#" class="button">양식</a></li>
</ul>
</section>
</header>
<!-- Main -->
<div id="main"></div>
<!-- Footer -->
<footer id="footer">
<p class="copyright">Web Programming Term Project 3팀 일동</p>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>