-
Notifications
You must be signed in to change notification settings - Fork 0
/
product_mobile.html
38 lines (36 loc) · 1.19 KB
/
product_mobile.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
<html lang="no">
<head>
<meta charset="utf-8" />
<title>Sko butikk</title>
<link href=".\stil_mobile.css" rel="stylesheet" />
</head>
<body>
<h1>Sko butikk</h1>
<nav>
<button>vis meny</button>
</nav>
<main>
<p>Velg type</p>
<select>
<option>Herre</option>
<option>Dame</option>
<option>Barn</option>
</select>
<p>velg kategori</p>
<select>
<option>jogge sko</option>
</select>
<input type="number" placeholder="Velg størrelse" min="37" max="44"/>
<input type = "number" placeholder="antal" min="1" max="500"/>
<input type="color" placeholder="farge" />
<input type="search" placeholder="Søk innenfor valgene du har gjort" />
<ul>
<li>Joggesko, pris: 799, </li>
</ul>
<img src=".\sko.jpg" width="500" height="500" alt="jogge sko"/>
<p>Info om varen</p>
<button>Legg til i handlekurven</button>
<button>Gå til kassen</button>
</main>
</body>
</html>