eis-website/notenrechner.html
2026-06-11 16:12:20 +02:00

59 lines
No EOL
1.5 KiB
HTML
Raw Permalink 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 Studienprojekt 2026</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<div class="nav-logo">🎓 Studienprojekt</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="ueber_uns.html">Über uns</a></li>
<li><a href="eis_projekt.html">Projekt</a></li>
<!-- NEU -->
<li><a href="notenrechner.html">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">🌙 Dark Mode</button>
</nav>
<section class="hero">
<div class="hero-content">
<div class="hero-tag">📊 DOM Notenrechner</div>
<h1>Noten<span>rechner</span></h1>
<p>Punkte eingeben und Note direkt auf der Seite erhalten.</p>
<input type="number" id="punkteInput" placeholder="Punkte (0100)" />
<button class="btn-primary" id="berechnenBtn">
Berechnen
</button>
<p id="ergebnis"></p>
<div class="progress-container">
<div id="progressBar"></div>
</div>
</div>
</section>
<script src="js/notenrechner.js"></script>
<script src="js/script.js"></script>
</body>
</html>