INF.03-01-25.01-SG/raty.html

51 lines
1.9 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Kursy komputerowe</title>
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<header style="position: relative; text-align: center;">
<img src="imgs/baner.png" alt="kursy komputerowe" style="width: 100%;">
<div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 48px; font-weight: bold;">hello</div>
</header>
<nav>
<a href="i1.html">Strona główna</a>
<a href="raty.html">Koszt rat</a>
<a href="https://moje-szkolenia.pl/">Nasz partner</a>
</nav>
<main>
<h3>Oblicz miesięczną ratę</h3>
<form id="formularz">
<div>
<input type="checkbox" id="react" class="kontrolki" name="kurs" value="React.js">
<label for="react">Kurs React.js</label>
</div>
<div>
<input type="checkbox" id="javascript" class="kontrolki" name="kurs" value="JavaScript">
<label for="javascript">Kurs JavaScript</label>
</div>
<div>
<label for="raty">Liczba rat: </label>
<input type="number" id="raty" class="kontrolki" name="raty" min="1">
</div>
<div>
<label for="miasto">Miasto: </label>
<select id="miasto" class="kontrolki" name="miasto">
<option value="Warszawa">Warszawa</option>
<option value="Katowice">Katowice</option>
<option value="Gdańsk">Gdańsk</option>
</select>
</div>
<button type="button" id="oblicz" class="kontrolki">Oblicz</button>
</form>
<p id="wynik"></p>
</main>
<footer>
<p>Autor strony: 99010101010</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>