-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
55 lines (45 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- GA tracker at bottom -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Where in the world is it 5pm Right Now?</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/fivepm.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row text-center">
<h1 class="text-center">Where in the World is it 5pm right now?</h1>
<p><h2 class="text-center" id="five-pm">Nowhere?? *gasp*</h2></p>
<p>Now, say cheers in a new language:</p>
<div id="cheers"></div>
</div>
</div>
<hr>
<div id="footer">
<footer>
<p>© Anton de Winter 2013-2015. Source code <a href="https://github.com/adewinter/fivepm">here</a></p>
<p>Stupid mods by JP Reardon. Source code <a href="https://github.com/jpreardon/fivepm">here</a></p>
</footer>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="scripts/bootstrap.min.js"></script>
<!-- ============================================= -->
<script src="scripts/timedata.js"></script>
<script src="scripts/fivepm.js"></script>
<script src="scripts/cheersdata.js"></script>
<script src="scripts/countrytolang.js"></script>
</body>
</html>