-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (35 loc) · 1.36 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
<!DOCTYPE HTML>
<html>
<head>
<title>Sunset Times</title>
<!-- Material Design Lite CSS and JS -->
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.blue_grey-red.min.css" />
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<!-- Fonts -->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,700' rel='stylesheet' type='text/css'>
<!-- Custom CSS -->
<link rel="stylesheet" href="styles.css">
<!-- SunCalc library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/suncalc/1.8.0/suncalc.min.js"></script>
<!-- Local JavaScript code -->
<script src="sunset.js"></script>
</head>
<body class="mdl-layout mdl-js-layout mdl-layout--fixed-header" onload="SunsetCalc.Sunset.startUp()">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Sunset Times</span>
</div>
</header>
<main class="mdl-layout__content">
<div class="clock-card mdl-card mdl-shadow--2dp">
<div class="mdl-card__title">
<h2 class="mdl-card__title-text">Countdown to Crepusculus</h2>
</div>
<div class="mdl-card__supporting-text">
<canvas id="canvas" class="clock-canvas" width="400" height="400"></canvas>
</div>
<div class="mdl-card__actions mdl-card--border time"></div>
</div>
</main>
</body>
</html>