-
Notifications
You must be signed in to change notification settings - Fork 128
/
restauracja.html
48 lines (48 loc) · 1.14 KB
/
restauracja.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Restauracja Wszystkie Smaki</title>
<link rel="stylesheet" href="styl1.css" />
</head>
<body>
<div id="baner">
<h1>Witamy w restauracji "Wszystkie Smaki"</h1>
</div>
<div id="lewy">
<img src="menu.jpg" alt="Nasze danie" />
</div>
<div id="prawy">
<h4>U nas dobrze zjesz!</h4>
<ul>
<li>Obiady od 40 zł</li>
<li>Przekąski od 10 zł</li>
<li>Kolacje od 20 zł</li>
</ul>
</div>
<div id="dolny">
<h2>Zarezerwuj stolik on-line</h2>
<form action="restauracja.php" method="post">
<label>Data (format rrrr-mm-dd)<br/>
<input type="text" name="data" /><br/>
</label>
<label>Ile osób?<br/>
<input type="number" name="osob" /><br/>
</label>
<label>Twój numer telefonu<br/>
<input type="text" name="telefon" /><br/>
</label>
<label>
<input type="checkbox" name="check" />
Zgadzam się na przetwarzanie moich danych osobowych
<br/>
</label>
<button type="reset">WYCZYŚĆ</button>
<button type="submit">REZERWUJ</button>
</form>
</div>
<div id="stopka">
Stronę internetową opracował: <i>PESEL</i>
</div>
</body>
</html>