forked from pranav1597/countdown-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (58 loc) · 2.92 KB
/
Copy pathindex.html
File metadata and controls
77 lines (58 loc) · 2.92 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
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Codech Website | Launch countdown timer</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Red+Hat+Text:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<script src="script.js" defer></script>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
</style>
</head>
<body>
<div class="container">
<div class="heading">We're launching soon</div>
<div class="countdown-container">
<div class="countdown countdown-days">
<div class="card">
<div data-days class="display days"></div>
<div class="front-display"></div>
<div class="back-display"></div>
</div>
<div class="display-heading">Days</div>
</div>
<div class="countdown countdown-hours">
<div class="card">
<div data-hours class="display hours"></div>
<div class="front-display"></div>
<div class="back-display"></div>
</div>
<div class="display-heading">Hours</div>
</div>
<div class="countdown countdown-minutes">
<div class="card">
<div data-minutes class="display minutes"></div>
<div class="front-display"></div>
<div class="back-display"></div>
</div>
<div class="display-heading">Minutes</div>
</div>
<div class="countdown countdown-seconds">
<div class="card">
<div data-seconds class="display seconds"></div>
<div class="front-display"></div>
<div class="back-display"></div>
</div>
<div class="display-heading">Seconds</div>
</div>
</div> <!-- end of countdown-container class-->
<style>.h_iframe-aparat_embed_frame{position:relative;} .h_iframe-aparat_embed_frame .ratio {display:block;width:100%;height:auto;} .h_iframe-aparat_embed_frame iframe {position:absolute;top:0;left:0;width:100%; height:100%;}</style><div class="h_iframe-aparat_embed_frame"> <span style="display: block;padding-top: 57%"></span><iframe scrolling="no" allowFullScreen="true" webkitallowfullscreen="true" mozallowfullscreen="true" src ="https://www.aparat.com/embed/live/codech"></iframe></div>
</div> <!-- end of container class -->
</body>
</html>