-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.21 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
<!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">
<meta name="description" content="A JS based timer | Rajkumar khistariya">
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link rel="stylesheet" href="src/timer.css">
<title>Timer | Rajkumar Khistariya</title>
</head>
<body>
<div class="timer-main">
<div class="timecont">
<div class="dis-hour"></div>
<div class="dis-min"></div>
<div class="dis-sec"></div>
</div>
<div class="btn-main">
<button class="btn-start" onclick="start()">Start</button>
<button class="btn-pause" onclick="pause()">Pause</button>
<button class="btn-reset" onclick="reset()">Reset</button>
</div>
</div>
<div class="footercss">
<div class="footerdiv">
<h2>Made with ❤️ by <a href="https://github.com//Rajkumar-Justcoder">Rajkumar Khistariya</a>
</h2>
</div>
</div>
<script src="src/timer.js"></script>
</body>
</html>