This commit is contained in:
2p01
2025-04-09 11:19:34 +02:00
parent 9ed5b9ce1d
commit 305379e78d
3 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Zadanie 01 - powitanie z imieniem</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Zadanie 1</h1>
<h2>Autor: Jakub Grzegorczyk</h2>
</header>
<div>
<p>Program wczytuje imię i wyświetla powitanie z tym imieniem</p>
</div>
<div>
<form action="wynik.php" method="post">
<label for="imie">Podaj swoje imię:</label><br>
<input type="text" id="imie" name="imie" required><br>
<input type="submit" value="Działaj"><br>
</form>
</div>
</body>
</html>