inf03-06.2022-z2/index.html

64 lines
1.7 KiB
HTML
Raw Normal View History

2024-11-08 11:41:12 +00:00
<!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>
2024-11-13 13:51:35 +00:00
<link rel="stylesheet" href="css/style2.css">
2024-11-08 12:45:00 +00:00
<script type="module" src="js/script.js"></script>
2024-11-08 11:41:12 +00:00
</head>
<body>
<div class="header">
Całodobowa stacja paliw
</div>
<div class="nav">
2024-11-08 11:55:09 +00:00
<a href="#"><img src="imgs/home.png" alt="Home"></a>
<a href="#"><img src="imgs/znak.png" alt="Documents"></a>
2024-11-08 11:41:12 +00:00
</div>
<div class="main-content">
<div class="form-container">
<h2>Orientacyjny koszt paliwa</h2>
2024-11-08 12:45:00 +00:00
<form action="obliczenia.html" method="POST">
<label for="fuel-type">Rodzaj paliwa:</label>
<select id="fuel-type" name="fuel-type">
</select>
2024-11-08 13:44:15 +00:00
<label id="cena">Calculate ...</label>
2024-11-08 12:45:00 +00:00
2024-11-13 13:47:17 +00:00
Ile litrow?</br>
<input id = "ile_litrow"></input></br>
<input id = "oblicz" type="button" value="OBLICZ">
<p id="wynik"></p>
2024-11-08 12:45:00 +00:00
</form>
2024-11-08 11:41:12 +00:00
</div>
<div class="car-image">
2024-11-08 11:55:09 +00:00
<img src="imgs/samochod.jpg" alt="Car">
2024-11-08 11:41:12 +00:00
</div>
</div>
2024-11-13 13:47:17 +00:00
<div class="post">
<h2>Dodaj rodzaj paliwa</h2>
Nazwa:</br>
<input id="name" type="text" placeholder="nazwa"></br></br>
Cena:</br>
<input id="price" type="number" placeholder = "cena"></br></br>
<button id = "button_dodaj">Dodaj</button>
</div>
2024-11-08 11:41:12 +00:00
<div class="footer">
Stronę opracował: 000000000000
</div>
2024-11-13 13:47:17 +00:00
<script src="js/post.js"></script>
2024-11-08 11:41:12 +00:00
</body>
</html>