countdown.html,countdown.js - reindent

This commit is contained in:
Nick Stokoe
2022-12-30 18:09:43 +00:00
parent d8da68595e
commit 6c92b71e79
2 changed files with 120 additions and 121 deletions

View File

@@ -1,36 +1,36 @@
<html>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.3.11/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>
<head>
<script src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.3.11/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 1st January 2014 in
<div id="location"></div>
<div>at <span id="localtime"></span> local time</div>
<div id="map"></div>
<div id="counter"></div>
until 1st January 2014 in
<div id="location"></div>
<div>at <span id="localtime"></span> local time</div>
<div id="map"></div>
<script src="countdown.js">
<script src="countdown.js">
</script>
</body>
</script>
</body>
</html>