This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/progp/24-10-17- switch_case/zeugnisnote.html
2024-11-14 10:03:28 +01:00

26 lines
899 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zeugnisnoten</title>
<link rel="stylesheet" href="..\css\schwarz-weiß.css">
</head>
<body>
<div class="main">
<h3>Zeugnisnoten</h3>
<form action="zeugnisnote.php">
<label for="note_englisch">Englisch: </label>
<input type="number" main="1" max="6" id="note_englisch" name="englisch" required><br>
<label for="note_deutsch">Deutsch: </label>
<input type="number" main="1" max="6" id="note_deutsch" name="deutsch" required><br>
<label for="note_mathe">Mathematik: </label>
<input type="number" main="1" max="6" id="note_mathe" name="mathe" required><br>
<button type="submit">absenden</button>
</form>
</div>
</body>
</html>