-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 1.63 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 1.63 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
47
48
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Countdown</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="floating-shapes"></div>
<main class="container">
<header>
<h1>Temptation Food Truck</h1>
<h2>Auténtica Comida Cubana</h2>
<p class="opening-text">Abrimos el próximo</p>
<p class="date-display" id="targetDate"></p>
</header>
<section class="countdown">
<div class="time-block">
<span class="time-value" id="days">0</span>
<span class="time-label">Días</span>
</div>
<div class="time-block">
<span class="time-value" id="hours">0</span>
<span class="time-label">Horas</span>
</div>
<div class="time-block">
<span class="time-value" id="minutes">0</span>
<span class="time-label">Minutos</span>
</div>
<div class="time-block">
<span class="time-value" id="seconds">0</span>
<span class="time-label">Segundos</span>
</div>
</section>
<footer class="info">
<p class="website">temptationfoodtruck.com</p>
<p class="tagline">El sabor de Cuba en cada bocado</p>
</footer>
</main>
<script src="script.js"></script>
</body>
</html>