-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
59 lines (50 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<!-- @Author: Kwaku Amoh-Aboagye
@Github: ket-c
-->
<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>Coming Soon - Your Company Name</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/comingsoon.css">
</head>
<body class="bg-warning d-flex justify-content-center align-items-center vh-100">
<section>
<h1 class="text-center text-dark align-middle " style="font-size: 100px">Coming Soon</h1>
<div class="d-flex justify-content-center">
<!-- change width for your preference based on the image size -->
<img width="35%" src="assets/img/image.svg" alt="">
</div>
<div class="d-flex justify-content-center text-center">
<div class="grid p-2">
<p>Days</p><b class="day"></b>
</div>
<div class="grid p-2">
<p>Hours</p><b class="hour"></b>
</div>
<div class="grid p-2">
<p>Minutes</p><b class="minutes"></b>
</div>
<div class="grid p-2">
<p>Seconds</p><b class="seconds"></b>
</div>
</div>
<div class="d-flex justify-content-center">
<code class="bg-white p-1">This website is under development</code>
</div>
<div class="text-center mt-5">
Contact: <a class="text-dark underline m-0 " style="font-weight: bolder" href="#" target="_blank">[email protected]</a>
<p class="m-0"> YOUR COMPANY NAME</p>
</div>
</section>
<img src="" alt="">
<!-- Boostrap-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
<!-- Coming Soon JS with timer-->
<script src="assets/js/comingsoon.js">
</script>
</body>
</html>