Glueck-Auf/notenrechner.html
2026-05-20 17:50:29 +02:00

39 lines
1.3 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>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">
</head>
<body>
<nav>
<span class="logo">Glück Auf</span>
<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>
</nav>
<div class="page">
<p class="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/notenrechner.js"></script>
</body>
</html>