-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (56 loc) · 2.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Does it work?</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!-- <script type="text/javascript" src="js/require.js"></script> -->
</head>
<body>
<div class="container-fluid">
<div class="jumbotron">
<h3>Does
<select class="selection" style="max-width:80%;" data-live-search="true">
<!-- Data will be appended here by script-->
</select>
work now?</h3>
<button type="button" class="select-button">Select</button>
<div class="container">
<p id="indicator" class="text-center"></p>
<p id="countdown" class="text-center"></p>
</div>
<div id="clock">
<div>
<div style="background-color:#34495E;" id="days">0</div>
<span>DAYS</span>
</div>
<div>
<div style="background-color:#34495E;" id="hours">0</div>
<span>HOURS</span>
</div>
<div>
<div style="background-color:#34495E;" id="minutes">0</div>
<span>MINS</span>
</div>
<div>
<div style="background-color:#34495E;" id="seconds">0</div>
<span>SECS</span>
</div>
</div>
<div class="container" id="subindicator"></div>
<p id="footer"class="small">The site does not hold the responsibility if the facility hours are wrong.
Be aware during celebrations and national holidays.</p>
</div>
</div>
<!-- SCRIPTS -->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script type="text/javascript" src="js/moment-with-locales.js"></script>
<script type="text/javascript" src="js/moment-timezone-with-data.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.4/js/bootstrap-select.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>