eis-website/notenrechner.html

148 lines
5.1 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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">
<meta name="description" content="Notenrechner - David & Karo - EIS Projekt">
<title>Notenrechner David & Karo</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/logo.png" type="image/png">
</head>
<body>
<header>
<div class="header-container">
<div class="logo">
<img src="img/logo.png" alt="Logo">
<div class="logo-text">
<span class="institution">David & Karo</span>
<span class="project">EIS Projekt</span>
</div>
</div>
<nav>
<a href="index.html">Start</a>
<a href="ueber_uns.html">Über uns</a>
<a href="eis_projekt.html">Projekt</a>
<a href="team.html">Team</a>
<a href="galerie.html">Galerie</a>
<a href="notenrechner.html" class="active">Notenrechner</a>
<a href="kontakt.html">Kontakt</a>
<a href="impressum.html">Impressum</a>
</nav>
</div>
</header>
<main>
<section class="hero">
<h1>🎓 Notenrechner 📊</h1>
<p>Berechne deine Noten live! Gebe deine Punkte ein und sehe sofort, welche Note du erhältst. 💯✨</p>
</section>
<section>
<h2>📝 Wie funktioniert's?</h2>
<div class="info-cards">
<div class="info-card">
<h4>1⃣ Punkte eingeben</h4>
<p>Geben Sie Ihre erreichten Punkte und die maximale Punktzahl ein. Der Rechner berechnet automatisch den Prozentsatz.</p>
</div>
<div class="info-card">
<h4>2⃣ Mehrere Noten</h4>
<p>Fügen Sie mehrere Noten hinzu, um einen Durchschnitt zu berechnen. Perfekt für Prüfungsvorbereitung!</p>
</div>
<div class="info-card">
<h4>3⃣ Sofort Feedback</h4>
<p>Sehen Sie sofort, welche Note Sie erhalten mit Prozentanzeige und hilfreichen Farben.</p>
</div>
</div>
</section>
<section>
<h2>📋 Notenmaßstab</h2>
<table class="grade-scale-table">
<thead>
<tr>
<th>Note</th>
<th>Prozentbereich</th>
<th>Beispiel (von 100)</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="grade-badge very-good">sehr gut</span></td>
<td>90100%</td>
<td>90100 Punkte</td>
</tr>
<tr>
<td><span class="grade-badge good">gut</span></td>
<td>7589%</td>
<td>7589 Punkte</td>
</tr>
<tr>
<td><span class="grade-badge satisfactory">befriedigend</span></td>
<td>6074%</td>
<td>6074 Punkte</td>
</tr>
<tr>
<td><span class="grade-badge adequate">ausreichend</span></td>
<td>5059%</td>
<td>5059 Punkte</td>
</tr>
<tr>
<td><span class="grade-badge failed">nicht bestanden</span></td>
<td>049%</td>
<td>049 Punkte</td>
</tr>
</tbody>
</table>
</section>
<section class="calculator-section">
<h2>🧮 Interaktiver Notenrechner</h2>
<div class="calculator-container">
<div class="grades-input-section">
<h3>Gebe deine Noten ein:</h3>
<div id="grades-container" class="grades-container">
<!-- Grades werden hier dynamisch eingefügt -->
</div>
<div class="calculator-buttons">
<button id="add-grade-btn" class="btn btn-add"> Weitere Note hinzufügen</button>
<button id="calculate-btn" class="btn btn-calculate">🧮 Berechnen</button>
<button id="reset-btn" class="btn btn-reset">🔄 Zurücksetzen</button>
</div>
</div>
<div class="results-section">
<div id="result" class="result-container">
<!-- Ergebnisse werden hier eingefügt -->
</div>
<div id="average-result" class="average-container">
<!-- Durchschnitt wird hier eingefügt -->
</div>
</div>
</div>
</section>
<section>
<h2>💡 Tipps & Tricks</h2>
<div class="tips-box">
<ul>
<li><strong>Live-Anzeige:</strong> Die Note wird automatisch aktualisiert, während du die Punkte eingibst!</li>
<li><strong>Verschiedene Skalen:</strong> Du kannst auch mit anderen Maximalwerten arbeiten (z.B. 50, 80 Punkte)</li>
<li><strong>Durchschnitt:</strong> Wenn du mehrere Noten eingibst, berechnet der Rechner automatisch den Durchschnitt</li>
<li><strong>Mobile-freundlich:</strong> Der Rechner funktioniert auf deinem Handy genauso gut wie am Computer!</li>
<li><strong>Schnell zurücksetzen:</strong> Mit dem "Zurücksetzen"-Button kannst du schnell von vorne anfangen</li>
</ul>
</div>
</section>
<footer>
<p>&copy; 2026 David & Karo EIS Projekt. Alle Rechte vorbehalten. 💕</p>
</footer>
</main>
<script src="js/notenrechner.js"></script>
<script src="js/script.js"></script>
</body>
</html>