-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmap.html
49 lines (43 loc) · 2.13 KB
/
map.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
<!DOCTYPE html>
<html>
<head>
<meta content="viewport">:
<title>Maps | OECD - Computer Education Data</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="viewport" content="initial-scale=1.0, width=device-width"/>
<!-- external stylesheet -->
<link rel="stylesheet" type="text/css" href="style/reset.css" />
<link rel="stylesheet" type="text/css" href="style/style.css" media="screen and (min-width:900px)" />
<link rel="stylesheet" type="text/css" href="style/style.css" media="screen and (min-width: 500px) and (max-width: 899px)" />
<link rel="stylesheet" type="text/css" href="style/mobile.landscape.css" media="screen and (max-width: 499px) and (orientation:landscape), screen and (max-device-width: 499px) and (orientation:landscape)" />
<link rel="stylesheet" type="text/css" href="style/mobile.css" media="screen and (max-width: 360px) and (orientation:portrait),
screen and (max-device-width: 360px) and (orientation:portrait)" />
<script type="text/javascript"
src="http://maps.googleapis.com/maps/api/js?key=AIzaSyC2x1QVNOvwHGW5PCpP6SNj8YEhjmcjRqs&sensor=false">
</script>
<script type="text/javascript" src="scripts/maps.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="data.html">Data</a></li>
<li><a href="graph.html">Graph</a></li>
<li><a href="map.html">Map</a></li>
</ul>
</nav>
<img src="images/logooecd_en.png" />
<h1> Organisation for Economic Co-operation and Development | Computer Education Time Series</h1>
</header>
<div id="container">
<div id="country"></div>
<div id="map_canvas" style="width:960px; height:480px"></div>
</div><!--end container -->
<footer>
<h5> © OECD 2012 | Website developed by
<a href="http://www.michaeldabydeen.com" target="_blank"> Michael Dabydeen</a> & <a href="http://www.michaeldabydeen.com" target="_blank"> Daniel Audino</a> </h5>
</footer>
</body>
</html>