-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontest.html
32 lines (30 loc) · 1.11 KB
/
contest.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
<!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>Contest Page</title>
<link rel="icon" type="image/png" href="./assets/favicon.png" />
<link rel="stylesheet" href="./css/contest.css" />
</head>
<body>
<nav id="navbar" class="nav">
<div class="nav-brand"><a href="./index.html">FourSpace</a></div>
</nav>
<div class="container">
<div class="contest-title">
<h1 id="title"></h1>
<div class="mailnlead">
<h3 id="company">Loading...</h3>
<button class="btn btn2" id="leaderboard">Leaderboard</button>
</div>
<pre id="info"></pre>
<h2>Questions</h2>
</div>
<div class="box" id="questions">Loading Questions ...</div>
</div>
</body>
<script src="./js/default.js"></script>
<script src="./js/contest.js"></script>
</html>