forked from khushi-purwar/WebDev-ProjectKart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (25 loc) · 957 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timer Using JavaScript</title>
<link rel="stylesheet" href="style/style.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<div class="timer">
<span class="minutes" id="minutes">00</span>
<span class="timer__part">:</span>
<span class="seconds" id="seconds">00</span>
<button type="button" class="start" id="start" onclick="myClickHandler()">
<span class="material-icons">play_arrow</span>
</button>
<button type="button" class="reset" onclick="resetTimer()">
<span class="material-icons">restart_alt</span></span>
</button>
</div>
</body>
<script src="script/script.js"></script>
</html>