-
Notifications
You must be signed in to change notification settings - Fork 128
/
twarz.html
57 lines (53 loc) · 1.45 KB
/
twarz.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Salon kosmetyczny</title>
<link rel="stylesheet" href="styl7.css">
<script src="main.js"></script>
</head>
<body>
<section id="lewy1">
<h2>Nasza oferta</h2>
<ol>
<li><a href="twarz.html">Oczyszczanie twarzy</a>
<ol>
<li>Peeling</li>
<li>Maska</li>
</ol>
</li>
<li>Masaż</li>
<li>Makijaż</li>
</ol>
<a href="index.html">Strona głowna</a>
</section>
<section id="prawy1">
<h1>Usługi kosmetyczne</h1>
</section>
<section id="prawy2">
<h3>Kalkulator ceny wizyty</h3>
<form>
<label>Peeling
<input type="checkbox" id="peeling"><br />
</label>
<label>Maska
<input type="checkbox" id="maska"><br />
</label>
<label>Masaż
<input type="checkbox" id="masaz"><br />
</label>
<label>Makijaż
<input type="checkbox" id="makijaz"><br />
</label>
<button type="button" onclick="oblicz()">Oblicz cenę</button>
</form>
<p id="wynik"></p>
</section>
<section id="lewy2">
<img src="obraz1.jpg" alt="Personel">
</section>
<section id="stopka">
<p>Autor: Chriskyy</p>
</section>
</body>
</html>