43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
|
<!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>
|