-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (118 loc) · 3.61 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!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" />
<title>Opexilo</title>
<!-- Primary Meta Tags -->
<meta name="title" content="Opexilo" />
<meta
name="description"
content="Hey, it's Opexilo! Stay tuned. We are almost ready to launch."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.opexilo.com/" />
<meta property="og:title" content="Opexilo" />
<meta
property="og:description"
content="In the meantime, Stay tuned. We are almost ready to launch."
/>
<meta
property="og:image"
content="https://www.opexilo.com/assets/images/og/og-image.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.opexilo.com/" />
<meta property="twitter:title" content="Opexilo" />
<meta
property="twitter:description"
content="In the meantime, Stay tuned. We are almost ready to launch."
/>
<meta
property="twitter:image"
content="https://www.opexilo.com/assets/images/og/og-image.png"
/>
<!-- Favicon Link -->
<link
rel="icon"
type="image/png"
sizes="512x512"
href="./assets/images/favicon/android-chrome-512x512.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="./assets/images/favicon/android-chrome-192x192.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/images/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/images/favicon/favicon-16x16.png"
/>
<link
rel="icon"
type="image/x-icon"
href="./assets/images/favicon/favicon.ico"
/>
<!-- Font Link -->
<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=Outfit:wght@400;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<section class="banner">
<div class="container">
<div class="banner__logo__wrapper">
<img
src="./assets/images/opexilo-logo.png"
alt="Opexilo Logo"
class="banner__logo"
/>
</div>
<h1 class="banner__title">Coming Soon</h1>
<p class="banner__text">
In the meantime, Stay tuned. We are almost ready to launch.
</p>
<div id="countdown" class="countdown">
<div class="countdown-item">
<span id="days"></span>
<div class="countdown-label">Days</div>
</div>
<div class="countdown-item">
<span id="hours"></span>
<div class="countdown-label">Hours</div>
</div>
<div class="countdown-item">
<span id="minutes"></span>
<div class="countdown-label">Minutes</div>
</div>
<div class="countdown-item">
<span id="seconds"></span>
<div class="countdown-label">Seconds</div>
</div>
</div>
</div>
</section>
<script src="./assets/js/countdown.js"></script>
</body>
</html>