forked from john-smilga/javascript-basic-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (67 loc) · 1.91 KB
/
index.html
File metadata and controls
68 lines (67 loc) · 1.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!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" />
</article>
<!-- info -->
<article class="gift-info">
<h3>old iphone giveaway</h3>
<h4 class="giveaway">
giveaway ends on Sunday, 24 April 2020, 8:00am
</h4>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Reprehenderit molestiae cum libero atque ut voluptate qui consectetur
aliquid incidunt voluptatem quos, dolore, non commodi quaerat aliquam
eligendi, quisquam totam blanditiis.
</p>
<div class="deadline">
<!-- days -->
<div class="deadline-format">
<div>
<h4 class="days">34</h4>
<span>days</span>
</div>
</div>
<!-- end of days -->
<!-- days -->
<div class="deadline-format">
<div>
<h4 class="hours">34</h4>
<span>hours</span>
</div>
</div>
<!-- end of days -->
<!-- minutes -->
<div class="deadline-format">
<div>
<h4 class="minutes">34</h4>
<span>mins</span>
</div>
</div>
<!-- end of days -->
<!-- minutes -->
<div class="deadline-format">
<div>
<h4 class="seconds">34</h4>
<span>secs</span>
</div>
</div>
<!-- end of days -->
</div>
</article>
</section>
<!-- javascript -->
<script src="app.js"></script>
</body>
</html>