-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (41 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Geography Genius</title>
<!-- CSS dependencies -->
<link rel="stylesheet" href="css/demo.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/demo-print.css" type="text/css" media="print">
<link rel="shortcut icon" href="world.ico" />
<link rel="stylesheet" type="text/css" href="dist/css/bootstrap.min.css">
<!-- World map code -->
<script src="js/raphael_2.0.2.js" type="text/javascript"></script>
<script src="js/world_1000.js" type="text/javascript"></script>
<!-- JS dependencies -->
<script src="js/jquery-1.11.3.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
<script src="js/jquery-migrate-1.2.1.js"></script>
<!-- bootbox code -->
<script src="bootbox.min.js"></script>
<script src="common.js"></script>
<script type="text/javascript">
if(!$.browser.chrome)
bootbox.alert("Welcome to Geography Genius.<br> We recommend use of <b>Google Chrome</b> only.You may click on instructions for futher information.");
window.onload = function () {
loadmap();
};
function instructions_index()
{
bootbox.alert("Welcome to Geography Genius.<br> You are in explore Mode. Click on Country to gain Informarion about it.");
}
</script>
</head>
<body style="background: #333;">
<div id="holder_1000" style="position:relative;"></div>
<div id="buttons" align="center">
<input type="button" id="Instructions" value="Instructions" class="btn" onclick="instructions_index()">
<a href="flag.html"><input type="button" value="Flag Quiz" class="btn"></a>
<a href="continents.html"><input type="button" value="Take Quiz" class="btn"></a>
</div>
</body>
</html>