-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (29 loc) · 940 Bytes
/
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
<!doctype html>
<html>
<head>
<title>MRT City Map</title>
<meta
name="description"
content="An unofficial map of towns on the Minecart Rapid Transit server"
/>
<meta name="author" content="MRT Mapping Services" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="map192.png" />
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="src/style.css" />
<script defer src="src/map/index.js" type="module"></script>
</head>
<body>
<div class="search">
<div class="search__bar">
<input id="search__input" placeholder="Search" disabled />
<button><i class="fa fa-search"></i></button>
</div>
<div class="results__container">
<div class="pill"></div>
<div id="search__results"></div>
</div>
</div>
<div id="map"></div>
</body>
</html>