-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Santa Tracker</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Pragati+Narrow:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="shortcut icon" href="santa.svg" type="image/x-icon" />
</head>
<body>
<section id="intro">
<img src="santa.svg" id="santa" />
<h1>Santa Tracker</h1>
<p>
Hey kids! Do you want to see <strong>exactly</strong> where Santa is
right now? Look no further!
</p>
</section>
<button id="button" onclick="locate()">Locate</button>
<table id="table">
<thead>
<tr>
<th style="width: 30%">Place</th>
<th style="width: 40%">Time</th>
<th style="width: 30%">Packages</th>
</tr>
</thead>
</table>
</body>
<script src="script.js"></script>
</html>