-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 860 Bytes
/
index.html
File metadata and controls
35 lines (34 loc) · 860 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maxium-scale=1.0, minium-scale=1.0">
<title>Digital Clock 12hrs.</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="wrap">
<div class="widget">
<div class="date">
<p class="dayWeek" id="dayWeek"></p>
<p class="day" id="day"></p>
<p> / </p>
<p class="month" id="month"></p>
<p> / </p>
<p class="year" id="year"></p>
</div>
<div class="clock">
<p id="hours" class="horas"></p>
<p>:</p>
<p id="minutes" class="minutos"></p>
<p>:</p>
<div class="div-seconds">
<p id="ampm" class="ampm"></p>
<p id="seconds" class="seconds"></p>
</div>
</div>
</div>
</div>
<script src="clock.js"></script>
</body>
</html>