-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Analog watch Project</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<script src="script.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
</head>
<body>
<h1>D U R G A N S H 'S A N A L O G</h1>
<div id="analog">
<div id="name">Dlog©</div>
<div id="hour"></div>
<div id="minute"></div>
<div id="second"></div>
<div id="centre"></div>
</div>
<div id="time-input">
<input type="text" id="time-input-field" placeholder="Enter time to Display" style="font-family:'Lilita One', cursive; ;">
<br><button id="set-time-btn">Set Time</button>
<button id="reset-time-btn">Reset Time</button>
</div>
<footer>Durgansh yadav©</footer>
</body>
</html>