-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="https://github.com/Mayborg121/StopWatch-Stopiee/blob/main/img/clock.png?raw=true">
<title>StopWatch</title>
</head>
<body>
<h1 id="myH1">StopWatch™</h1>
<div id="container">
<p></p>
<div id="display">
<div id="timetip1"> HH : MM : SS</div>
<div id="time">00:00:00</div>
<div id="milisec">00</div>
<div id="timetip2">Millisec.</div>
</div>
<p></p>
<div id="controls">
<button id="startBtn" onclick="start()"> Start</button>
<button id="stopBtn" onclick="stop()"> Stop</button>
<button id="resetBtn" onclick="reset()"> Reset</button>
<p></p>
</div>
</div>
<p></p>
<div id="para">
<div id="quote">✨Hello!, Myself Stopiee I was created by Mr.Mayborg as a Micro-project, I would love to help you in your work...</div>
<div id="author">
</div>
</div>
<footer>
<div>
<p id="footertext" >
Made With 💖 by <a href="https://github.com/Mayborg121">MAYBORG</a> | © 2024
</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>