-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (58 loc) · 1.99 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<!-- General Info For This HTML file ******************************************
*
* Project : digitalClock
* File Type : HTML
* File Editor : File was last edited using: VSCodium
* Description :
* ****************************************************************************
* Author : Toni Calfim ([email protected])
* ****************************************************************************
* Version : Version 1.0.0.3
* Created : Jan, 2023
* Modified : Jan, 2023
* Lincence : MIT
* ****************************************************************************
*
* ****************************************************************************
*
-->
<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>Digital Clock</title>
<!-- I now style the way I want it to be -->
<link href="./css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- It's important to see here the difference between div and span.
Div: responds like blocks, and starts new lines.
Span: doesn't respond like blocks, and never starts new lines.
Here we have many elements assigned to the same class.
-->
<div class="main-div">
<h1>Digital Clock</h1>
<div class="clock">
<div>
<span id="hours">--</span>
<span class="text">Hours</span>
</div>
<div>
<span id="minutes">--</span>
<span class="text">Minutes</span>
</div>
<div>
<span id="seconds">--</span>
<span class="text">Seconds</span>
</div>
<div>
<span id="ampm">--</span>
</div>
</div>
</div>
<script src="./js/digitalClock.js"></script>
<script src="./js/index.js"></script>
</body>
</html>