-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>U.S. Map</title>
<meta name="description" content="Practice identifying the 50 U.S. states">
<meta name="author" content="Jozie Sands">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
</head>
<body>
<div id="mapid"></div>
<div id="overlay">
<form id="form">
<input autocomplete="off" type="text" name="stateinput"id="stateinput" ></input>
<br>
<button id="submit" type="submit">✓</button>
</form>
<div id="endgame">
<p>👍 🎉</p>
<button id="newGame">New Game</button>
</div>
</div>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="scripts.js"></script>
</body>
</html>