-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswipe.html
58 lines (48 loc) · 2.03 KB
/
swipe.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
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=5">
<link rel="stylesheet" type="text/css" href="css/core.css" />
<link rel="stylesheet" type="text/css" href="css/swipe.css" />
<link rel="stylesheet" type="text/css" href="css/clock.css" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'>
<title>Swipe</title>
</head>
<body>
<div class="page">
<div class="container">
<div class="header">
<a href="other.html" class="header-element">
Other
</a>
<a href="index.html" class="header-element">
Home
</a>
</div>
<h1>Swipe</h1>
<hr>
<div class="clear"></div>
<div>
<div id="board"></div>
<div class="clear"></div>
<div class="clock">
<div><span id="min">00</span>:<span id="sec">00</span></div>
<input id="startButton" type="button" value="Start">
<input id="pauseButton" type="button" value="Pause">
<input id="resumeButton" type="button" value="Resume">
<input id="resetButton" type="button" value="Reset">
<input id="restartButton" type="button" value="Restart">
</div>
</div>
</div>
</div>
</body>
<script src='https://hammerjs.github.io/dist/hammer.min.js'></script>
<script async src="js/swipe.js"></script>
<script async src="js/clock.js"></script>
<script async src="js/app.js"></script>
</html>