-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
51 lines (46 loc) · 1.4 KB
/
app.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
<!DOCTYPE html>
<html>
<head>
<title>DS3800</title>
<link rel="stylesheet" href="app.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8"/>
</head>
<body class="container">
<nav id="nav">
<button data-target="main">Forside</button>
<button data-target="pictures">Legg til bilder</button>
<button data-target="slideshow">Slideshow</button>
</nav>
<section class="main section active">
<div class="container">
<header>
<h1>Teknisk innlevering DS3800</h1>
<h4>Gruppemedlemmer:</h4>
<p>
Nicolai Berg </br>
Joakim Lund </br>
Olai S. Frantzen </br>
Jesper Martinsen Førisdahl </br>
Odin Fasting </br>
</p>
</header>
</div>
</section>
<section class="pictures section">
<h1>Bilder</h1>
<img id="defaultImage" src="./pictures/default.jpg" />
<br>
<br>
<input class="add-picture-url" id="add-picture-url" type="text" />
<button class="add-picture-button" onclick="save()">Legg til</button>
</section>
<section class="slideshow section">
<h1>Slideshow</h1>
<img class="slideshow" src="" id="slide" border="3"/>
<br>
</section>
<script type="text/javascript" src="resources/jquery.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>