-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
29 lines (28 loc) · 997 Bytes
/
quiz.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="quiz.css">
</head>
<body>
<div>
<p>
En mening här som man ska gissa på
</p>
<span>Tid kvar: <progress id="time" value="20" max="50"></progress> <span id="timelabel">50s</span></span>
<ul class="alternatives">
<li class="correct">Moderaterna</li>
<li>Vänsterpartiet</li>
<li>Sveriges kommunistiska parti, Höglundarna</li>
<li>Lantmanna- och borgarepartiet</li>
</ul>
</div>
</body>
</html>