move web content to www

And rename countdown.html to index.html. Update dates to current
year (so something happens!)
This commit is contained in:
Nick Stokoe
2022-12-30 18:10:42 +00:00
parent 01abfe90ac
commit 1a8c50d1ee
3 changed files with 52 additions and 54 deletions

34
www/index.html Normal file
View File

@@ -0,0 +1,34 @@
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/d3/7.8.0/d3.min.js"></script>
<link href='http://fonts.googleapis.com/css?family=Chango' rel='stylesheet' type='text/css'>
<style>
body {
font-family: Chango;
text-align: center;
}
div#counter {
font-size: 180pt;
text-align: left;
}
div#location {
font-size: 50pt;
}
div.hours { color: blue; }
div.minutes { color: green; }
div.seconds { color: orange; }
div.countdown { color: red; }
</style>
</head>
<body>
<div id="counter"></div>
until <span id="until-date"></span> in
<div id="location"></div>
<div>at <span id="localtime"></span> local time</div>
<div id="map"></div>
<script src="countdown.js"></script>
</body>
</html>