-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (36 loc) · 1.15 KB
/
index.html
File metadata and controls
46 lines (36 loc) · 1.15 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
44
45
46
<!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">
<title>Date and Time</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
<!-- Styles -->
<link rel="stylesheet" href="css/style.css">
<!-- Scripts -->
<script src="js/time.js" defer></script>
<script src="js/date.js" defer></script>
</head>
<body>
<main>
<!-- Time -->
<time class="time">
<data class="hours">HH</data> :
<data class="minutes">MM</data> :
<data class="seconds">SS</data>
<data class="amOrPM">AM/PM</data>
</time>
<!-- Date -->
<time class="date">
<data class="month">Month</data>
<data class="dayOfMonth">00</data>,
<data class="year">0000</data> -
<data class="dayOfWeek">SMTWTFS</data>
</time>
</main>
</body>
</html>