-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (48 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Countdown 2023</title>
<link rel="stylesheet" href="./src/style.css">
</head>
<body>
<div class="loader-wrapper">
<span class="loader"><span class="loader-inner"></span></span>
</div>
<section>
<h2>The Universe is evolving....</h2>
<main>
<div>
<h3>Days</h3>
<p>14</p>
</div>
<div>
<h3>Hours</h3>
<p>14</p>
</div>
<div>
<h3>Minutes</h3>
<p>14</p>
</div>
<div>
<h3>Seconds</h3>
<p>14</p>
</div>
</main>
<div class="new-year">
<img src="./images/new-year.gif" alt="New year">
</div>
<h4>Countdown to 2023</h4>
<canvas></canvas>
</section>
<script type="module" src="/src/main.js"></script>
<script>
$(window).on("load",function(){
$(".loader-wrapper").fadeOut("slow");
});
</script>
</body>
</html>