Add obliczenia.html

This commit is contained in:
piotrb 2024-11-07 12:09:11 +00:00
commit 96016c086d
1 changed files with 43 additions and 0 deletions

43
obliczenia.html Normal file
View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="pl-PL">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stacja Paliw</title>
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
</head>
<body>
<header>
<h1>Całodobowa stacja paliw</h1>
</header>
<nav>
<a href="stacja.html"><img src="home.png"></a>
<a href="obliczenia.html"><img src="znak.png" ></a>
<a href="kwerendy.txt">Pobierz Dokument</a>
</nav>
<main>
<section id="lewy">
<h2>Orientacyjny koszt paliwa</h2>
<form>
<label>Rodzaj paliwa (1-benzyna, 2-olej napędowy):<br/>
<input type="number" id="rodzaj" /><br/>
</label>
<label>Ile litrów?<br/>
<input type="number" id="ilosc" /><br/>
</label>
<button type="button" onclick="oblicz()">OBLICZ</button>
</form>
<p id="wynik"></p>
</section>
<section id="prawy">
<img id="samochod" src="samochod.jpg" alt="samochód">
</section>
</main>
<footer>Strone wykonał: PiotrB</footer>
</body>
</html>