-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.45 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
<!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" />
<link rel="stylesheet" href="style.css" />
<script src="main.js" defer></script>
<script
type="text/javascript"
src="//dapi.kakao.com/v2/maps/sdk.js?appkey=728d450581a7ec05aa8a932f2cc16daf&libraries=services"
></script>
<title>NAVI</title>
</head>
<body>
<header>
<h1 class="header__title">NAVI🦋</h1>
</header>
<section class="main">
<section class="search">
<div class="search__btns">
<button class="search__add__btn">+</button>
<button class="search__delete__btn">-</button>
<button class="search__ok__btn">search</button>
</div>
<ul class="search__address">
<li class="search__address__li">
<label class="search__address__title" for="1">주소 1</label>
<input class="search__address__input" id="1" type="text" />
</li>
</ul>
<span class="search__error__msg"
>한 개 이상의 주소를 입력해주세요.</span
>
</section>
<section class="map__container">
<div id="map"></div>
</section>
</section>
<footer>
<div class="footer__title">copyright © dongree</div>
</footer>
</body>
</html>