-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
44 lines (43 loc) · 1.17 KB
/
code.html
File metadata and controls
44 lines (43 loc) · 1.17 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
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example code</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<script src="script.js"></script>
</head>
<body>
<header>
<h1 id="name">Arne Natskår</h1>
<nav>
<a href="index.html">Home</a>
<a href="code.html">Eksempler</a>
<a href="cv.html">CV</a>
<a href="contact.html">Kontakt meg!</a>
</nav>
</header>
<div class="center">
<ul>
<button onclick="bySykkel()">Sjekk Bergen Bysykkel tilgjengelighet (2022)</button>
</ul>
<ul>
<button onclick="dogApp()">Hvilken hund er din favoritthund? (2022)</button>
</ul>
<ul>
<button onclick="kanonspill()">Spill med kanon! (2019)</button>
</ul>
<ul>
<button onclick="hoksrud()">Spill med Bård Hoksrud! (2019)</button>
</ul>
<ul>
<button onclick="velgTlf()">Beste måten å velge telefonnummer på!</button>
</ul>
<ul>
<button onclick="eksamen()">Siste opppgave IT2 Eksamen (2019)</button>
</ul>
<ul>
<button onclick="farger()">Farger til echo!</button>
</ul>
</div>
</body>
</html>