-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 975 Bytes
/
index.html
File metadata and controls
34 lines (33 loc) · 975 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
<!DOCTYPE html>
<html lang="ca">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>temporitzador</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="data">
<p>Quant falta per al <span id="objectiu">1/1/2027</span>?</p>
</div>
<div class="temporizer" id="temporizer">
<div class="xifra">
<p class="num" id="dies">00</p>
<p class="nom-xifra">dies</p>
</div>
<div class="xifra">
<p class="num" id="hores">00</p>
<p class="nom-xifra">hores</p>
</div>
<div class="xifra">
<p class="num" id="minuts">00</p>
<p class="nom-xifra">minuts</p>
</div>
<div class="xifra">
<p class="num" id="segons">00</p>
<p class="nom-xifra">segons</p>
</div>
</div>
<script src="main.js"></script>
</body>
</html>