-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (38 loc) · 1.6 KB
/
index.html
File metadata and controls
49 lines (38 loc) · 1.6 KB
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Debatklok</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Oswald'>
<link rel="stylesheet" href="css/style.css">
<!-- Remember to include jQuery :) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
<!-- jQuery Modal -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-modal/0.9.1/jquery.modal.min.css" />
</head>
<body>
<h1 id="switch">null</h1>
<div class="container">
<div class="countdown countdown--wide" id="countdown">
<div class="countdown__fill_left" id="ticker"></div>
<!-- <div class="countdown__fill_right" id="ticker"></div> -->
<div class="countdown__digit" id="seconds">00</div>
<!--.countdown__buttons-->
<!-- .countdown__button +-->
<!-- .countdown__button --->
</div>
</div>
<a class="full-button" id="toggle">Toggle size</a>
<!--<a class="full-button-left" href="#ex1" rel="modal:open">Modal</a>-->
<script src='https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.4/hammer.min.js'></script>
<script src="js/index.js"></script>
<!-- Modal HTML embedded directly into document -->
<div id="ex1" class="modal">
<h2>Instellingen</h2>
<a href="#" rel="modal:close">Close</a>
</div>
</body>
</html>