-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathph.html
More file actions
38 lines (33 loc) · 1.25 KB
/
Copy pathph.html
File metadata and controls
38 lines (33 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body id="background" style="" >
<div class="content">
<h1 style="text-align: center">pH</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 style="opacity:1.0" src="" id="ph" class = "center"/>
<img style="opacity:1.0" src="https://lh3.googleusercontent.com/pw/AP1GczMqKu_hBGOdwBwza2TIRR3VaW0w9vLkMElHH2a1sqBwrN01ZYF4vKa6O9lQFvRffCTvXNTfyP5cIoZx3Svk1UnGAmcKgUcY29ASmexj1geAdyhbqPs=w2400" class = "center">
<script src="script.js"> </script>
<script>window.onload = ph();</script>
<script>window.onload = type();</script>
<script>window.onload = initilizeTime();</script>
</div>
</body>
</html>