-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
49 lines (48 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<link rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous">
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.0.13/css/all.css"
integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous">
<link href="stylecheckbox.css" rel="stylesheet"></link>
<link href="style.css" rel="stylesheet"></link>
<title>Gryffindor</title>
</head>
<body class="d-flex flex-column">
<div id="headerColor">
<h1 class="mb-0 py-3"><i class="fas fa-globe"></i>Gryffindor<i class="fas fa-globe"></i></h1>
</div>
<div class="row flex-1 limit-height limit-width">
<aside id="user-options" class="col-3 pl-3">
<form id="coordinates" class="pl-3"></form>
<hr />
<div id="location-details" class="mx-3"></div>
<div class="d-flex flex-column">
<div class="row align-items-start mr-0">
<div id="options" class="col mx-3"></div>
</div>
</div>
</aside>
<main class="col px-0">
<div id="map"></div>
</main>
</div>
<footer>
<p class="bg-dark text-white text-center p-1 mb-0">
Copyright <i class="far fa-copyright"></i>2018 Gryffindor
</p>
</footer>
<script src="main.js"></script>
<script type="text/javascript" src="predicted.js"></script>
<script src="map.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDMRz9RilOuyHF78KhFdfW9GgDANQfd78Y&callback=initMap"></script>
<script src="checkbox.js"></script>
</body>
</html>