-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.06 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
<!doctype html>
<html lang="en">
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Roboto">
<style>
.Europe{font-family: 'Roboto', Serif;
text-shadow: 2px 2px 2px #aaa;}
.body {
background-color: lightblue;
}
</style>
<head>
<meta charset="utf-8">
<title>Londons International Visitors by Air</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<meta name="description" content="Londons International Visitors by Ai">
<meta name="Jamie O'Donnell" content="SitePoint">
<center>
</head>
<body>
<script src="jquery-1.12.3.min.js"></script>
<div>
<br><br>
</div>
<div id="infoToggler"><img src="images/Working_Optimised.gif" width="1560px" height="938px"/>
<img src="images/Working_Optimised_EU.gif" width="1560px" height="938px" style="display:none"/>
</div>
<div class="Europe">
<font size="5">
<br><br>
Click Image to switch to Europe View
</center>
</div>
<script>
$("#infoToggler").click(function() {
$(this).find('img').toggle();
});
</script>
</body>
</html>