forked from siddharthsonii/E-Wall-Clock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.08 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.08 KB
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
<!doctype html>
<html lang="en">
<head>
<title>Clock</title>
<meta
name="viewport"
content="width=device-width, user-scalable="no", initial-scale=1.0 shrink-to-fit=no"
/>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type" />
<meta content="utf-8" http-equiv="encoding" />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<!-- JS -->
<script type="text/javascript" src="javascript/index.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<meta name="description" content="A live analog and digital clock on Galaxy Coding "/>
</head>
<body scroll="no">
<div id="MyClockDisplay" ></div>
<div class="clock">
<div class="hour">
<div class="hr" id="hr"></div>
</div>
<div class="min">
<div class="mn" id="mn"></div>
</div>
<div class="sec">
<div class="sc" id="sc"></div>
</div>
</div>
<br>
<br>
</body>
<script type="text/javascript">
initialize();
showTime();
</script>
</html>