forked from ntijoh/slpWU23-master
-
Notifications
You must be signed in to change notification settings - Fork 0
/
boka.html
75 lines (65 loc) · 2.33 KB
/
boka.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="sv">
<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="css/style.css">
<title>Document</title>
</head>
<body>
<header class="webpageheader">
<h1 class="title"> Ericks </h1>
<div class="header-nav">
<a class="header-link" href="index.html">Hem</a>
<a class="header-link" href="OmOss.html">Om Oss</a>
<a class="header-link" href="KalasOchFester.html">Kalas och fester</a>
</div>
<div class="Hamburger">
<input type="checkbox" class="toggler">
<div class="hamburger">
<div></div>
</div>
<div class="menu">
<div>
<ul class="dropdownmenu">
<li><a href='index.html'>Hem</a></li>
<li><a href='OmOss.html'>Om oss</a></li>
<li><a href='boka.html'>Boka ett bord</a></li>
<li><a href='kalasochfester.html'>Kalas och fester</a></li>
</ul>
</div>
</div>
</div>
</header>
<div class="bookcontainer">
<form class="bookform">
<label for="fnamn">
Förnamn
<input type="text" id="fnamn" name="fnamn" placeholder="Förnamn" value="">
</label>
<label for="enamn">
Efternamn
<input type="text" id="enamn" name="enamn" placeholder="Efternamn" value="">
</label>
<label for="personer">
Antal personer
<input type="number" id="personer" name="persons" placeholder="" value="">
</label>
<label for="tid">
Tid
<input type="time" id="tid" name="tid">
</label>
<label for="datum">
Datum
<input type="date" id="datum" name="datum" value="">
</label>
<label for="tfnummer">
Telefonnummer
<input type="tel" id="tfnummer" name="phone">
</label>
<input type="submit" id="submit" name="submit">
</form>
</div>
</body>
</html>