Upload files to "/"

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

50
stacja.html Normal file
View File

@ -0,0 +1,50 @@
<!DOCTYPE html>
<html lang="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>Godziny otwarcia stacji</h2>
<table>
<tr>
<td>Dzień</td>
<td>Od</td>
<td>Do</td>
</tr>
<tr>
<td>Pn-Sb</td>
<td>6:00</td>
<td>24:00</td>
</tr>
<tr>
<td>Nd</td>
<td>7:00</td>
<td>24:00</td>
</tr>
</table>
</section>
<section id="prawy">
<img id="samochod" src="samochod.jpg" alt="samochód">
</section>
</main>
<footer>Strone wykonał: PiotrB</footer>
</body>
</html>