forked from Edgar-K/Quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (22 loc) · 810 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="container ">
<div id="home" class="flex-center flex-column">
<h1>Quick quiz</h1>
<form name="maxQuestions" action="game.html" onsubmit="return setMaxQuestions()" method="GET">
<p class="default-color">Number of Questions? </p><input class="btn" value="50" type="number" name="nrQuestions">
<input type="submit" class="btn" value="Play">
</form>
<a href="highscores.html" class="btn">High Scores</a>
</div>
</div>
</body>
<script src="js/index.js"></script>
</html>