Glueck-Auf/notenrechner.html
2026-05-20 20:32:16 +02:00

43 lines
1.5 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Glück Auf | Notenrechner</title>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/logo.png">
</head>
<body>
<nav>
<a href="index.html" class="logo">Glück Auf</a>
<ul>
<li><a href="index.html">Start</a></li>
<li><a href="ueber_mich.html">Über mich</a></li>
<li><a href="eis_projekt.html">Projekt</a></li>
<li><a href="notenrechner.html" class="active">Notenrechner</a></li>
<li><a href="textanalyse.html">Textanalyse</a></li>
<li><a href="kontakt.html">Kontakt</a></li>
<li><a href="impressum.html">Impressum</a></li>
</ul>
<button id="dark-mode-toggle">🌙</button>
</nav>
<div class="page-hero">
<p class="hero-tag">Übung</p>
<h1>Notenrechner</h1>
<p class="sub">Gib deine Punktzahl ein und erhalte deine Note.</p>
<input type="number" id="punkte" placeholder="Deine Punkte (0100)">
<input type="number" id="maxPunkte" placeholder="Maximale Punkte">
<button id="berechnen-btn">Berechnen</button>
<p id="ergebnis"></p>
<div id="balken" style="height: 18px; width: 0%; border-radius: 4px; margin-top: 1rem; transition: width 0.4s;"></div>
</div>
<script src="js/script.js"></script>
<script src="js/notenrechner.js"></script>
</body>
</html>