-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (66 loc) · 2.8 KB
/
index.html
File metadata and controls
71 lines (66 loc) · 2.8 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
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Language" content="en">
<meta name="title" content="Launch countdown timer">
<meta name="description" content="Launch countdown timer project for Frontend Mentor">
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./assets/img/favicon-32x32.png" type="image/x-icon">
<title>Launch countdown timer</title>
</head>
<body>
<main class="timer">
<section class="container">
<div class="h1 timer__title">We're Launching soon</div>
<div class="timer__list">
<div></div>
<div class="timer__cont">
<div class="timer__counter" >
<div class="timer__days" id="days">
</div>
</div>
<span class="timer__span">days</span>
</div>
<div class="timer__cont">
<div class="timer__counter">
<div class="timer__hours" id="hours">
</div>
</div>
<span class="timer__span">hours</span>
</div>
<div class="timer__cont">
<div class="timer__counter">
<div class="timer__minutes" id="minutes">
</div>
</div>
<span class="timer__span">minutes</span>
</div>
<div class="timer__cont">
<div class="timer__counter">
<div class="timer__seconds" id="seconds">
</div>
</div>
<span class="timer__span">seconds</span>
</div>
<div></div>
</div>
<div class="timer__social">
<a href="#"><img src="./assets/img/icon-facebook.svg" alt="ifacebook link" class="timer__link"></a>
<a href="#"><img src="./assets/img/icon-instagram.svg" alt="ifacebook link" class="timer__link"></a>
<a href="#"><img src="./assets/img/icon-pinterest.svg" alt="ifacebook link" class="timer__link"></a>
</div>
</section>
<div class="timer__stars">
<img src="./assets/img/bg-stars.svg" alt="">
</div>
<div class="timer__hill">
<img src="./assets/img/pattern-hills.svg" alt="" >
</div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="./js/index.js"></script>
</body>
</html>