-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacid.html
More file actions
36 lines (32 loc) · 1.05 KB
/
Copy pathacid.html
File metadata and controls
36 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body id="background" style="">
<div class="content">
<h1 style="text-align: center">Acid</h1>
<a href="" id="type">
<h2>back</h2></a>
<p class= "timer" id="time">
<span class="digit" id="hr"> 00</span>
<span class="txt">Hr</span>
<span class="digit" id="min"> 00</span>
<span class="txt">Min</span>
<span class="digit" id="sec"> 00</span>
<span class="txt">Sec</span>
<span class="digit" id="count"> 00</span>
</p>
<div style="text-align:center">
<button class="btn" onclick="startTimer()"> Start</button>
<button class="btn" onclick="pauseTimer()"> Pause</button>
<button class="btn" onclick="resetTimer()"> Reset</button>
</div>
<img src="" style="opacity:1.0" id="acid" class = "center" />
<script src="script.js"> </script>
<script>window.onload = fizz();</script>
<script>window.onload = type();</script>
<script>window.onload = initilizeTime();</script>
</div>
</body>
</html>