-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwesela.html
60 lines (57 loc) · 1.38 KB
/
wesela.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8" />
<title>Dom weselny</title>
<link rel="stylesheet" href="styl5.css" />
</head>
<body>
<header>
<h1>
<img src="logo.png" height="70px" />
Dom weselny zorganizuje wesele za Ciebie
<img src="logo.png" height="70px" />
</h1>
</header>
<main>
<section id="gorny">
<section id="lewy">
<h2>Dom weselny</h2>
<p>ul. Przemysłowa 5</p>
<p>Kalisz</p>
<p><a href="obraczki.png">Pobierz logo</a></p>
</section>
<section id="srodkowy">
<h2>Oferujemy</h2>
<ul>
<li>Wesela</li>
<li>Bankiety</li>
<li>Konferencje</li>
</ul>
</section>
<section id="prawy">
<p><a href="Regulamin.txt">czytaj regulamin</a></p>
</section>
</section>
<section id="dolny">
<h2>Ile będzie kosztowało moje wesele?</h2>
<label>Podaj liczbę gości:
<input type="number" id="goscie" />
</label>
<br />
<label>
<input type="checkbox" id="poprawiny" />Wesele z poprawinami?
</label>
<br />
<button type="button" onclick="oblicz()">Oblicz koszt</button>
<p id="wynik"></p>
</section>
</main>
<footer>
<p>
Stronę internetową opracował: <i>Chr1skyy</i>
</p>
</footer>
<script src="main.js"></script>
</body>
</html>