eis-website/notenrechner.html

55 lines
No EOL
1.4 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 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 class="dark-toggle" onclick="toggleDarkMode()">🌙 Mode</button>
</nav>
<section class="hero">
<div class="hero-content">
<div class="hero-tag">📊 JavaScript Aufgabe</div>
<h1>Noten<span>rechner</span></h1>
<p>
Hier kannst du Punkte eingeben und erhältst automatisch deine Note.
</p>
<div class="btn-group">
<button class="btn-primary" onclick="startNotenrechner()">
▶ Rechner starten
</button>
</div>
</div>
</section>
<script src="js/notenrechner.js"></script>
<script src="js/script.js"></script>
</body>
</html>