26 lines
899 B
HTML
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> |