-
Notifications
You must be signed in to change notification settings - Fork 128
/
cena.html
41 lines (38 loc) · 1.06 KB
/
cena.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>malarz</title>
<link rel="stylesheet" href="styl_1.css">
</head>
<body>
<header>
<h1>Malowanie pokoi i biur</h1>
</header>
<main>
<section id="panelLewy">
<h2>Menu</h2>
<ul>
<li><a href="mieszamy.html">Mieszamy</a></li>
<li><a href="cena.html">Wyceniamy</a></li>
</ul>
</section>
<section id="panelSrodkowy">
<h2>Zapotrzebowanie na farbę</h2>
<label>Powierzchnia malowania (m<sup>2</sup>):
<input type="number" id="powierzchnia" />
</label>
<button type="button" onclick="policzFarba()">Policz</button>
<p id="wynik"></p>
</section>
<section id="panelPrawy">
<img src="obraz.png" alt="Próbki farb" />
</section>
</main>
<footer>
<h3>MALARZ</h3>
<p>Stronę opracował: Chriskyy#0181</p>
</footer>
<script src="main.js"></script>
</body>
</html>