-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountdown.html
42 lines (39 loc) · 2.07 KB
/
countdown.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Days Left</title>
<!-- Include your JavaScript file -->
<script src="./DateLogic.js"></script>
<!-- Refresh every hour -->
<style type="text/css">
body { background: black !important; } /* Adding !important forces the browser to overwrite the default style applied by Bootstrap */
</style>
<script>
var timer = setTimeout(function() {
window.location='./pics.html'
}, 600000);
</script>
</head>
<body bgcolor="black">
<!-- Create an element to display the result -->
<div id="result"></div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.14.7/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<div width="100%" align="center" class="container-fluid">
<img id="led0" src="./lcd/led-0.png">
<img id="led1" src="./lcd/led-1.png">
<img id="led2" src="./lcd/led-2.png">
</div>
<div width="100%" align="center" class="container-fluid">
<a href="./weather.html"><img id="weather" src="./img/weather.png" width="5%"/></a>
<a href="./pics.html"><img id="pics" src="./img/pictures.png" width="5%"/></a>
</div>
</div>
</body>
</html>