-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime.html
43 lines (33 loc) · 1 KB
/
time.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
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="CodeHim">
<title>Check time Clock </title>
<!-- Style CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Demo CSS (No need to include it into your project) -->
<link rel="stylesheet" href="css/demo.css">
</head>
<body>
<main>
<!-- Start DEMO HTML (Use the following code into your project)-->
<section class="clock-bg">
<div id="timedate">
<a id="mon">January</a>
<a id="d">1</a>,
<a id="y">2045</a><br />
<a id="h">12</a> :
<a id="m">00</a>:
<a id="s">00</a>:
<a id="mi">000</a>
</div>
</section>
<!-- END EDMO HTML (Happy Coding!)-->
</main>
<footer class="credit">Author: <span> BLC Luke Okagha- Distributed </span></footer>
<!-- Clock JS -->
<script src="./js/script.js"></script>
</body>
</html>