63 lines
1.6 KiB
HTML
63 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="pl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Całodobowa stacja paliw</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
|
|
<script type="module" src="js/get.js"></script>
|
|
<script type="module" src="js/post.js"></script>
|
|
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
Całodobowa stacja paliw
|
|
</div>
|
|
|
|
<div class="nav">
|
|
<a href="#"><img src="imgs/home.png" alt="Home"></a>
|
|
<a href="#"><img src="imgs/znak.png" alt="Documents"></a>
|
|
</div>
|
|
|
|
<div class="main-content">
|
|
<div class="form-container">
|
|
<h2>Orientacyjny koszt paliwa</h2>
|
|
|
|
<form action="obliczenia.html" method="POST">
|
|
<label for="fuel-type">Rodzaj paliwa:</label>
|
|
|
|
<select id="fuel-type" name="fuel-type">
|
|
</select>
|
|
|
|
<label id="cena">Calculate ...</label>
|
|
|
|
<label for="liters">Ile litrów?</label>
|
|
<input type="text" id="liters" name="liters">
|
|
|
|
<input type="submit" value="OBLICZ">
|
|
</form>
|
|
|
|
</div>
|
|
<div class="car-image">
|
|
<img src="imgs/samochod.jpg" alt="Car">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div>
|
|
<h2>Orientacyjny koszt paliwa</h2>
|
|
|
|
<input type="text" id="fuel" name="name">
|
|
<input type="text" id="price" name="price">
|
|
<button type="button" id="btn">Oblicz</button>
|
|
</div>
|
|
|
|
|
|
<div class="footer">
|
|
Stronę opracował: 000000000000
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|