-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<title>2nd Referendum Live Count</title>
<meta name="viewport" content="width=device-width, initial-scale=0.7">
<link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">
stLight.options({publisher: "b5b9fe7f-85e2-42be-82ea-f5c319c8f97e", doNotHash: false, doNotCopy: false, hashAddressBar: false});
</script>
</head>
<body>
<div class="container">
<div class="content">
<h1>2nd Referendum Live Count</h1>
<span class="counter" data-from="0" data-to="0" data-speed="1000"></span>
<br>
<small>Updating every 6 seconds</small>
<br>
<br>
<span class='st_facebook_hcount' displayText='Facebook'></span>
<span class='st_twitter_hcount' displayText='Tweet'></span>
<br>
<br>
<a href="by-country.html">View By Country!</a>
</div>
</div>
</body>
<script src="js/jquery.countTo.js"></script>
<script src="js/app.js"></script>
<script>
window.setInterval(function(){
getUpdatedCount();
}, 6000);
getUpdatedCount();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-24330577-5', 'auto');
ga('send', 'pageview');
</script>
</html>