-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 2.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Modify your page title here -->
<title>EXAMPLE.COM</title>
<!-- *************************** -->
<link rel="icon" type="image/x-icon" href="/public/images/favicon.ico">
<!-- Template specific styles -->
<link rel="stylesheet" href="/public/css/style.css">
<!-- Bootstrap 5.2.2 CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
</head>
<body class="d-flex align-items-center justify-content-center">
<main>
<div class="text-center m-3">
<!-- MODIFY THE FOLLOWING EXAMPLE TEXT AS REQUIRED-->
<h1>EXAMPLE.COM</h1>
<div class="hr"></div>
<p>Our website is currently under construction!</p>
<p>We'll be ready in...</p>
<!-- ******************************************** -->
</div>
<div class="countdown row row-cols-2 row-cols-md-4 m-3 text-center">
<div class="col">
<p class="days m-0">00</p>
<p>Days</p>
</div>
<div class="col">
<p class="hours m-0">00</p>
<p>Hours</p>
</div>
<div class="col">
<p class="minutes m-0">00</p>
<p>Minutes</p>
</div>
<div class="col">
<p class="seconds m-0">00</p>
<p>Seconds</p>
</div>
</div>
</main>
<!-- JavaScript for countdown -->
<script src="/public/js/main.js"></script>
<!-- jQuery 3.6.1.min -->
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<!-- Bootstrap 5.2.2 JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
</body>
</html>