eis-website/notenrechner.html
2026-06-02 12:01:58 +02:00

59 lines
No EOL
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>isa8 EIS SoSe 25</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js" defer></script>
</head>
<body>
<header>
<nav>
<a href="index.html">Start</a>
<a href="ueber_uns.html">Über uns</a>
<a href="eis_projekt.html">Projekt</a>
<a href="kontakt.html">Kontakt</a>
<a href="notenrechner.html">Notenrechner</a>
<a href="impressum.html">Impressum</a>
</nav>
</header>
<main>
<section id="notenrechner">
<h2>Notenrechner</h2>
<div>
<label for="punkte">
Erreichte Punkte:
</label>
<input
type="number"
id="punkte"
min="0"
placeholder="z. B. 45">
</div>
<div>
<label for="max">
Maximale Punkte:
</label>
<input
type="number"
id="max"
min="1"
placeholder="z. B. 60">
</div>
<button onclick="startNotenrechner()">
Note berechnen
</button>
<p id="ergebnis"></p>
</section>
</main>
<footer>
<p>&copy; 2026 - Lernprojekt EIS</p>
</footer>
</body>
</html>