-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.31 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>
<head>
<title>Twenty20 Trivia</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Limelight&display=swap" rel="stylesheet">
</head>
<body>
<div id="background-overlay"></div>
<div id="background-underlay"></div>
<video autoplay muted id="myVideo">
<source src="video/masks-up.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
<h1>Twenty20 Trivia</h1>
<p>How much do you really know about the year 2020?</p>
<form>
<fieldset>
<legend></legend>
<label>Please enter your alias :</label>
<input id="userName" type="text" name="userName" required="required" value="randomPlayer">
<button type="submit">Submit</button>
</fieldset>
</form>
<nav>
<div id="nav">
<ul>
<li><a href="index.html">Home</li></a>
<li><a href="aboutUs.html">About Us</li></a>
<li><a href="leaderBoard.html">Leader Board</li></a>
</ul>
</div>
</nav>
<footer>©Twenty20 Trivia™
<script src="js/app.js"></script>
</footer>
</div>
<embed src="audio/bensound-happyrock.mp3" loop="true" autostart="true" width="2" height="0">
</body>
</html>