-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.php
More file actions
37 lines (34 loc) · 1.36 KB
/
Copy pathquiz.php
File metadata and controls
37 lines (34 loc) · 1.36 KB
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
<!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">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/quiz-style.css">
<link rel="shortcut icon" href="assets/logo.svg" type="image/x-icon">
<script src="js/script_quiz.js" defer></script>
<title>Quiz</title>
</head>
<body>
<div class="container-entire">
<?php require 'inc/nav.php'; ?>
<div class="quiz-container">
<h1 class="quiz-title">Quiz Pagina</h1>
<h2> Hoi daar! </h2>
<p class="p-quiz">Wij hebben een quiz gemaakt om erachter te komen wat je dagelijks doet. <br>Nadat je deze quiz
hebt
gemaakt zien jij of je ouders hulp nodig hebben.</p>
<p class="naam-start">Voordat je start willen wij je naam weten.</p>
<div class="input-and-btn">
<label for="input-name">Vul je naam in!</label>
<input type="text" name="input-name" class="name-input" onchange="trackText()">
<a href="quiz_questions.php" class="start-quiz-btn">Start quiz</a>
</div>
<div class="img-div">
</div>
</div>
</div>
<?php require 'inc/footer.php'; ?>
</body>
</html>