Malý repozitář pro WTL 3.I 2025/2026
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
1.0 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1> Formulaře</h1>
<h5>učení s formuláři</h5>
<h3><a href="index.html">Domu</a></h3>
<hr>
<form action="index.html" method="get">
<label for="name">Jmeno:</label><br>
<input type="text" name="name" id="name"><br><br>
<label for="cash">Castka:</label><br>
<input type="number" name="cash" id="cash"><br><br>
<select name="vyber" id="vyber">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select><br><br>
<label for="dlouhyText">TextArea pro dlouhý text</label><br>
<textarea name="dlouhyText" id="dlouhyText"></textarea><br><br>
<button type="submit">ODESLAT</button>
</form>
</body>
</html>