-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (52 loc) · 1.69 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
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>30 secondes</title>
<!-- Style -->
<link href="stylesheet/style.css" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- icon -->
<link rel="icon" href="favicon.png">
<!-- Javascript -->
<script src="dist/bundle.js" type="text/javascript" defer></script>
</head>
<body>
<div class="container">
<div class="game-playground">
<!-- Before start -->
<div id="mainmenu">
<h1>30 secondes!</h1>
<hr>
<p>Krijg vijf willekeurige woorden en probeer dit in 30 secondes te raden!</p>
<br/>
<button id="clear-game-button">Begin een nieuw spel</button>
<button id="resume-game-button">Hervat het huidige spel</button>
<br/>
</div>
<!-- In game -->
<div id="game">
<div class="input-container">
<h3>De woorden zijn:</h3>
<h2 id="random-word-display"></h2>
<button id="random-word-button">Ontdek willekeurige woorden!</button>
</div>
<div class="result-container">
<h2>Geschiedenis</h2>
<ol id="history-overview"></ol>
</div>
</div>
<div class="v-progress-linear" style="height: 10px;">
<div class="v-progress-linear__background" style="opacity: 0.3; width: 100%;"></div>
<div class="v-progress-linear__determinate light-blue" id="slider"></div>
</div>
</div>
<img
src="assets/1200px-Avans_Hogeschool_Logo.svg.png"
alt="Avans Hogeschool logo"
title="Avans Hogeschool logo"
class="logo"/>
</div>
</body>
</html>