-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
56 lines (54 loc) · 1.93 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
<!DOCTYPE html>
<html lang="nb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LEGOdudes webshop</title>
<link href="style.css" rel="stylesheet" media="all">
</head>
<body>
<div id="container">
<header>
<img id="logo" src="website_images/LD_logo.svg" alt="LEGOdudes nettbutikk" />
<button id="carttoggle">
<span id="cartcount">99</span>
<img id="carticon" src="website_images/legocart.svg" alt="Din handlevogn" />
</button>
<section id="cart">
<h2>Din handlevogn</h2>
<ul id="cartlist">
<li>
<span class="title">Produkttittel</span>
<span class="price">89,-</span>
<span class="quantity">x1</span>
<span class="functions">
<button>X</button>
</span>
</li>
<li>
<span class="title">Wengestone warriors</span>
<span class="price">9989,-</span>
<span class="quantity">x333</span>
<span class="functions">
<button>X</button>
</span>
</li>
</ul>
</section>
</header>
<nav>
<ul>
<li><a href="#">City</a></li>
<li><a href="#">Ninjago</a></li>
<li><a href="#">Castles and Knights</a></li>
<li><a href="#">Marine and Pirates</a></li>
<li><a href="#">Movie Characters</a></li>
</ul>
</nav>
<main>
</main>
</div>
<script src="legodudes.js"></script>
<script src="shopscript.js"></script>
</body>
</html>