-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Travel</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="dist/css/layout.css">
</head>
<body>
<div id="map"></div>
<table id="stats">
<tr>
<th>Distance</th>
<td id="distance"></td>
</tr>
<tr>
<th>Time</th>
<td id="time"></td>
</tr>
<tr>
<th>Places stayed</th>
<td id="stayed"></td>
</tr>
<tr>
<th>Countries visited</th>
<td id="countries"></td>
</tr>
<tr>
<th>Staying put for</th>
<td id="next">Not sure</td>
</tr>
</table>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="./dist/js/script.js?pmcb"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB3zvfceYuLNlQP4r0lRbdYIPPoN7SeIuU&callback=initMap"
async defer></script>
</body>
</html>