eis-website/notenrechner.html
Tahar Lamred & Theresa Nerz bc084a5b8a First changes with VS
2026-06-08 16:13:08 +02:00

49 lines
1.1 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>Notenrechner</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/notenrechner.js" defer></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about_us.html">About Us</a></li>
<li><a href="eis_project.html">Project</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="imprint.html">Imprint</a></li>
<li><a href="notenrechner.html" class="active">Notenrechner</a></li>
</ul>
<button id="darkmode-toggle" class="darkmode-button">🌙 Dark Mode</button>
</nav>
</header>
<main>
<h1>Notenrechner (DOM-Version)</h1>
<form id="noten-form">
<label for="punkte">Punktzahl (0100):</label>
<input id="punkte" name="punkte" type="number" min="0" max="100">
<button type="button" id="berechnen">Berechnen</button>
</form>
<p id="ergebnis"></p>
<div id="balken-container">
<div id="balken"></div>
</div>
</main>
<footer>
<p>© 2026 EIS Learning Project</p>
</footer>
</body>
</html>