-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (65 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Countdown</title>
<!-- styles -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<section class="section-center">
<!-- image -->
<article class="gift-img">
<img src="./gift.jpeg" alt="gift picture" />
</article>
<!-- info -->
<article class="gift-info">
<h3>old iphone giveaway</h3>
<h4 class="giveaway">
giveaway ends Tuesday, 10 May 2022 8:00am
</h4>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Reiciendis deleniti velit voluptatibus enim ipsa fugit praesentium nobis error a, non, corporis,
mollitia voluptates. Aperiam reiciendis officiis doloremque consequuntur dolores expedita.
</p>
<div class="deadline">
<!-- days -->
<div class="deadline-format">
<div>
<h4 class="days">34</h4>
<span>days</span>
</div>
</div>
<!-- end of item -->
<!-- hours -->
<div class="deadline-format">
<div>
<h4 class="hours">34</h4>
<span>hours</span>
</div>
</div>
<!-- end of item -->
<!-- mins -->
<div class="deadline-format">
<div>
<h4 class="mins">34</h4>
<span>mins</span>
</div>
</div>
<!-- end of item -->
<!-- seconds -->
<div class="deadline-format">
<div>
<h4 class="secs">34</h4>
<span>secs</span>
</div>
</div>
<!-- end of item -->
</div>
</article>
</section>
<!-- javascript -->
<script src="app.js"></script>
</body>
</html>