-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (34 loc) · 1.09 KB
/
Copy pathindex.html
File metadata and controls
43 lines (34 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://d3js.org/topojson.v3.min.js"></script>
<link href="stylesheet.css" rel="stylesheet">
</head>
<body>
<div id="bottom">
<div id="map">
<div id="graphic">
<svg class='map' height=600 width=1000></svg>
</div>
<div id="mapPopout">
<img src="images/logo.png" id="logoImg" />
<img src="images/pokeball.png" id="pokemonImg" />
<label id="pokeLogo">Click on a location to learn more!</label>
<div id="locationDiv">
</div>
</div>
</div>
<div id="VersionSelect">
<label id="VersionLbl">Choose Version to Display</label>
<img src="images/Red.png" class="VersionButton" width="120"
height="120" />
<img src="images/Blue.png" class="VersionButton" width="120"
height="120" />
<img src="images/Yellow.png" class="VersionButton" width="120"
height="120" />
</div>
</div>
<script src="mapScript.js"></script>
</body>
</html>