-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Clock</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--- Roboto font form Google --->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
<!--- Orbitron font from Google for the Digital clock --->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="control">
<center>
<button class="colorBtn">
Change theme
</button>
<!-- Format
<input type="radio" name="format" value="normal">
<label for="normal">12 Hour clock</label>
<input type="radio" name="format" value="railway">
<label for="railway">24 Hour clock</label> -->
</center>
</div>
<center class="container">
<h1 class="header">Digital Clock</h1>
<p id="clock"></p>
</center>
<div class="footer">
<center>
Designed by<br>
Soumya Sambeet Mohapatra
</center>
</div>
<script src="script.js"></script>
</body>
</html>