forked from Ujjawalmaurya/countdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·35 lines (34 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AU915 Countdown</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
</head>
<body onload="loadData();" oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
<div class="container">
<h2>
<span>
Australian Frequency Plan - Regional Temperature Check
</span>
<div class="enddate" id="rtc"></div> (Est. End Time)
<div class="votelink"><a href="https://heliumvote.com/13F5AWLhxwTjhDMnZ6ww4oJWgRkBoW9ji4JnDzwQXjsQhiT2kcX">Got to the Helium Vote site</a></div>
</h2>
<div id="vote">
<span class="result_text"><span class="result_number">765</span> AU asserted hotspots voted for return to AU915 FSB2</span>
<span class="result_text"><span class="result_number">39</span> AU asserted hotspots voted for AS923_1C dual plan to remain</span>
<span class="result_text"><span class="result_number">95.15%</span> Percentage in favour of a return to AU915</span>
</div>
<div class="countdown">
<div id="day"></div>
<div id="hour"></div>
<div id="minute"></div>
<div id="second"></div>
<!-- <div id="ms"></div> -->
</div>
</div>
</body>
</html>