-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultater.html
44 lines (42 loc) · 1.26 KB
/
resultater.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
<!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="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Timeregistering</title>
</head>
<body>
<!--Menu for the pages-->
<nav>
<ul class="menu">
<li>
<a href="/index.html"><i class="fas"></i> Timeregistering</a>
</li>
<li>
<a href="resultater.html"><i class="fas"></i> Resultater</a>
</li>
</ul>
</nav>
<section id="show-results">
<div class="form-group">
<div class="row">
<div class="col-1 header">Antall Timer</div>
<div class="col-1 header">Kommentar</div>
<div class="col-1 header">Slett</div>
</div>
<div id="show-the-hours"></div>
</div>
</section>
<!--javascript files-->
<script src="start.js"></script>
<script src="results.js"></script>
</body>
</html>