-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlist.html
More file actions
45 lines (36 loc) · 1.92 KB
/
Copy pathlist.html
File metadata and controls
45 lines (36 loc) · 1.92 KB
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
<html>
<head>
<title>근처 무료급식소</title>
<meta charset="utf-8"/>
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width">
<meta name="author" content="MS Player">
<meta name="description" content="내 주변에는 어떤 급식소가 있을까요?">
<link rel="stylesheet" href="css/list.css" type="text/css">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css" type="text/css">
<link rel="shortcut icon" href="icons/favicon.ico">
<link rel="icon" href="icons/favicon.ico">
<script type="text/javascript" src="json_data.json"></script>
<script type="text/javascript" src="js/list.js"></script>
</head>
<body>
<div class="background">
<div style="float: left;">
<span class="your_locate">회원님의 위치 근처</span><br>
<span class="cafeteria_list">무료급식소 리스트</span><br>
<div id="cafeteria_list">
</div>
<div style="height: 100px;"></div>
</div>
</div>
<div class="Bottombar" style="position:fixed; display: flex;">
<center style="flex: 1;"><button onClick="location.href='index.html'"><img src="icons/map_grey.svg" alt="map"></button></center>
<center style="flex: 1;"><button><img src="icons/list_green.svg" alt="list"></button></center>
<center style="flex: 1;"><button onClick="location.href='information.html'"><img src="icons/settings_grey.svg" alt="setting"></button></center>
</div>
</body>
<script type="text/javascript" src="json_data.json"></script>
<script type="text/javascript" src="js/list.js"></script>
<script>
list_result();
</script>
</html>