-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (77 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Help Cascade</title>
<script
src="https://kit.fontawesome.com/75913da099.js"
crossorigin="anonymous"
></script>
<script src="./resources/js/main.js" async defer></script>
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./resources/css/styles.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<section id="modal">
<div id="modal-content">
<h2>Help Cascade</h2>
<div id="timer-headings">
<p>Hours</p>
<p>Minutes</p>
</div>
<div class="timer-input">
<span class="fas fa-sort-up" onclick="addTime('hours')"></span>
<p id="hours">0</p>
<span class="fas fa-sort-down" onclick="minusTime('hours')"></span>
</div>
<div class="timer-input">
<span class="fas fa-sort-up" onclick="addTime('minutes')"></span>
<p id="minutes">0</p>
<span class="fas fa-sort-down" onclick="minusTime('minutes')"></span>
</div>
<button onclick="startButton()" id="on">GO</button>
</div>
</section>
<header>
<img
src="https://www.nology.io/wp-content/themes/nology-main-theme/assets/dist/images/Navbar-Logo-Colour.svg"
alt=""
/>
<span class="fas fa-redo" onclick="resetContent()"></span>
</header>
<main>
<section id="timer-content">
<div id="timer">
<h3>Time Box</h3>
<p id="entered-value"></p>
<div id ="counter-names">
<p>hrs</p>
<p>mins</p>
<p>secs</p>
</div>
<div id="counter-numbers">
<p id="hours">0</p>
<p id="minutes">0</p>
<p id="seconds">0</p>
</div>
<div id="pause-go-button"></div>
</div>
<article id="content"></article>
</section>
<section id="progress">
<p>Self</p>
<p>Google</p>
<p>Duck</p>
<p>Team</p>
<p>Coaches</p>
</section>
</main>
</body>
</html>