-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (56 loc) · 2.64 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
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Maps | The Great British Map</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script>
<script src="js/great-british-map-nav.js" type="text/javascript"></script>
</head>
<body>
<a href="https://github.com/vicchi/great-british-map"><img id="github-ribbon" src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png" alt="Fork me on GitHub"></a>
<h1><a href="/great-british-map/">Great Britain vs. The United Kingdom vs. The British Isles</a></h1>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="http://d3js.org/topojson.v0.min.js"></script>
<script type="text/javascript" src="js/great-british-map-visual.js"></script>
<div id="nav">
<ul>
<li>Geographic Island Group</li>
<ul class="group">
<li><a id="group-bi" href="#">British Isles</a></li>
</ul>
<li>Geographic Islands</li>
<ul class="islands">
<li><a id="island-gbr" href="#">Great Britain</a></li>
<li><a id="island-irl" href="#">Ireland</a></li>
<li><a id="island-imn" href="#">Isle Of Man</a></li>
<li><a id="island-chl" href="#">Channel Islands</a></li>
</ul>
<li>Sovereign States</li>
<ul class="states">
<li><a id="state-gbr" href="#">United Kingdom</a></li>
<li><a id="state-irl" href="#">Republic Of Ireland</a></li>
</ul>
<li>Administrative Countries</li>
<ul class="countries">
<li><a id="country-eng" href="#">England</a></li>
<li><a id="country-sct" href="#">Scotland</a></li>
<li><a id="country-wls" href="#">Wales</a></li>
<li><a id="country-nir" href="#">Northern Ireland</a></li>
</ul>
<li>Crown Dependencies</li>
<ul class="dependencies">
<li><a id="cd-imn" href="#">Isle Of Man</a></li>
<li><a id="cd-chl" href="#">Channel Islands</a></li>
</ul>
</ul>
</div>
<div id="footer">
<div id="credits">
<a href="/">More Maps</a>. This is a code thing by <a href="http://www.garygale.com/" target="_blank">Gary Gale</a>, made out of HTML, CSS, jQuery and <a href="http://d3js.org" target="_blank">D3</a>.
</div>
<div id="attribution">
© <a href="http://www.garygale.com/" target="_blank">Gary Gale</a>; content licensed under <a href="http://creativecommons.org/licenses/by/3.0" target="_blank">CC BY 3.0</a>; code licensed under a <a href="http://opensource.org/licenses/BSD-2-Clause" target="_blank">BSD license</a>. Made with free vector and raster map data from <a href="http://www.naturalearthdata.com/" target="_blank">Natural Earth</a>.
</div>
</div>
</body>