-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (37 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>샘플</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="map_wrap">
<div id="map" style="width:100%;height:100%;position:relative;overflow:hidden;"></div>
<div id="menu_wrap" class="bg_white">
<div class="option">
<div>
<form id="searchForm">
키워드 : <input type="text" id="query" size="15">
<button type="submit">검색하기</button>
<button type="button" id="loc_btn">현재 위치에서 검색</button>
</form>
</div>
</div>
<hr>
<ul id="placesList"></ul>
<div id="pagination"></div>
</div>
</div>
<div id="weather_wrap">
<div id="weather_clothes" style="border: 2px solid #ccc; width: 240px; border-radius: 10px; height: 350px; margin: 20px 0 0 5px; padding: 10px; text-align: center;">
<div id="weather_txt"></div>
<img id="weather_img" style="width: 100px;"/>
<ul class="today-clothes"></ul></div>
</div>
</div>
<script type="text/javascript" src="//dapi.kakao.com/v2/maps/sdk.js?appkey=90b8e6fd2a9909e4b0de7508dd8dcb62&libraries=services"></script>
<script src="script.js"></script>
</body>
</html>