-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (96 loc) · 3.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!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">
<title>어디카세</title>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> <!-- axios -->
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/media.css">
<link rel="stylesheet" type="text/css"
href='https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css'>
</head>
<body>
<div class="container">
<div class="header-index">
<ul class="navbar-ul">
<li><a href="index.html">
<img class="logo-img" src="../img/app-logo.png">
</a>
</li>
<li>
<a href="./index.html">
<h3>어디카세</h3>
</a>
</li>
<li>
<a href="./html/course.html">
<h3>코스 둘러보기</h3>
</a>
</li>
<li class="search">
<form action="/html/search.html" method="get">
<input class="search-input" type="search" name="keyword" placeholder="코스를 검색해보세요">
</form>
</li>
</ul>
</div>
<!-- main-section -->
<div class="main-section">
<div class="body-section1">
<div class="section-wrap">
<div class="section-text">
<h1>내 취향으로<br>짜보는 소중한 하루</h1>
<p class="text">맛집, 놀거리, 카페 이 모든걸<br>
고민할 필요없이 추천해드립니다. </p>
</div>
</div>
<div class="section-wrap">
<img src="../img/main-page-img/img1.png">
</div>
</div>
<div class="body-section2">
<div class="section-wrap">
<img src="../img/main-page-img/img2.png">
</div>
<div class="section-wrap">
<div class="section-text">
<h1>위치 기반으로<br>주변 인기 매장 추천</h1>
<p class="text">선택한 지역 주변으로 우선 추천해줘서 <br> 어디갈지 고민하지 않아도 돼요</p>
</div>
</div>
</div>
<div class="body-section3">
<div class="section-wrap">
<div class="section-text">
<h1>주요 번화가 <br>인기 매장 맞춤 추천</h1>
<p class="text">어느 곳을 갈지 고민되나요?<br>
서울의 인기 지역 다 여기있어요 </p>
<a href='../html/course.html'>
<input class="move-button" type="button" value=" 지역 인기 코스 보러가기" style="cursor:pointer;">
</a>
</div>
</div>
<div class="section-wrap">
<img src="../img/main-page-img/img3.png">
</div>
</div>
</div>
<!-- footer -->
<div class="footer">
<ul class="top-keywords-list">
<li>
<a href="#">이용약관</a>
</li>
<li>
<a href="#">개인정보처리방침</a>
</li>
<li>
<a href="#">위치기반서비스 이용약관</a>
</li>
</ul>
</div>
</div>
</body>
</html>