-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
83 lines (79 loc) · 2.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Is it snowing in Chattanooga, Tennessee?</title>
<style>
@font-face {
font-family: 'ChatypeB2.1RegularRegular';
src: url('chatypeb2.1regular-webfont.eot');
src: url('chatypeb2.1regular-webfont.eot?#iefix') format('embedded-opentype'),
url('chatypeb2.1regular-webfont.woff') format('woff'),
url('chatypeb2.1regular-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
body{
background-color: #fff;
font-family: "ChatypeB2.1RegularRegular";
}
h1 {
color: #222;
text-align: center;
font-size: 100px;
margin-top: 100px;
}
.credits {
text-align: center;
margin-top: 100px;
}
a{
color: #888;
}
em{
display: block;
text-align: center;
font-size: 80%;
}
ul {
text-align: center;
list-style-type: none;
padding: 0;
}
.viewsource {
text-align: center;
margin-top: 1.5em;
}
#icon {
margin: 100px auto -100px;
display: block;
}
</style>
</head>
<body>
<canvas id="icon" width="128" height="128" style="display: none;"></canvas>
<h1 id="forecast">
<!--- Edit the following line -->
<!--- Checking… -->
<img src="https://pbs.twimg.com/media/B8U4JrSCAAA0-0u.jpg">
<!-- Don't edit past this point -->
</h1>
<p class="credits">made by <a href="http://jden.us">jden</a> and the <a href="http://chitchatt.org/">Chattanooga Code for America fellows</a></p>
<em>please note, this is not an official (or necessarily accurate) website. it's meant to be fun. <a href="http://www.wunderground.com/US/TN/099.html">be safe!</a></em>
<ul>
<li><a href="http://isitsnowingincharlotte.com/">isitsnowingincharlotte.com</a></li>
<li><a href="http://www.isitsnowinginatlantaga.com/">isitsnowinginatlantaga.com</a></li>
<li><a href="http://www.snowinginlex.com/">snowinginlex.com</a></li>
<li><a href="http://www.snowed-island.com/">snowed-island.com</a></li>
<li><a href="http://isitsnowinginsanjuan.com/">isitsnowinginsanjuan.com</a></li>
</ul>
<p class="viewsource"><a href="https://github.com/jden/snowchatt">view the source</a> <br> and start your own</p>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-47969102-1', 'isitsnowinginchattanooga.com');
ga('send', 'pageview');
</script>
</body>
</html>