-
Notifications
You must be signed in to change notification settings - Fork 1
/
countdown.html
44 lines (41 loc) · 2.26 KB
/
countdown.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
<!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">
<meta name="description" content="HakD is a hackathon for everyone – people just like you, the person that sits next to you in history, and the other guy who is eating Pringles – yes, all of you are invited!">
<meta name="keywords" content="hakd, hackathon, hackdulwich, hakd2023, hakd2023expressyourself, expressyourself, express, yourself, dulwich, dulwich college, shanghai">
<title>Countdown | HakD 2023: Express Yourself!</title>
<link rel="canonical" href="/">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="/assets/countdown.css">
<meta property="og:title" content="HakD 2023: Game On">
<meta property="og:description" content="HakD is a hackathon for everyone – people just like you, the person that sits next to you in history, and the other guy who is eating Pringles – yes, all of you are invited!">
<meta property="og:image" content="/assets/hakd-logo.png">
<meta property="og:url" content="http://hakd-shanghai.com">
<meta property="og:site_name" content="HakD 2023: Game On"/>
<meta name="application-name" content="hakd-shanghai.com">
<meta name="theme-color" content="#202020" />
</head>
<body>
<div class="container">
<h1 class="title">HakD 2023: Express Yourself!</h1>
<div id="countdown">
<ul>
<li><span id="days">XX</span>Days</li>
<li><span id="hours">XX</span>Hours</li>
<li><span id="minutes">XX</span>Minutes</li>
<li><span id="seconds">XX</span>Seconds</li>
</ul>
</div>
<div id="countdownContent" class="welcome">
<span>Welcome to HakD 2023: Express Yourself!</span>
</div>
</div>
<script src="/assets/countdown.js"></script>
</body>
</html>