eis-website/quiz.html
2026-06-03 13:19:32 +00:00

55 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>Mini-Quiz - EIS Projekt</title>
<link rel="icon" href="img/favicon.png" type="image/png">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<section class="content-section">
<h1 class="section-title">EIS Mini-Quiz</h1>
<p class="section-subtitle">Teste dein Wissen über Web-Entwicklung und unsere PH Weingarten!</p>
<div id="quiz-container" class="quiz-container">
<!-- Quiz wird hier per JavaScript eingefügt -->
</div>
<div id="quiz-result" class="quiz-result" style="display: none;">
<h2>🎉 Quiz abgeschlossen!</h2>
<p id="result-text"></p>
<button id="restart-btn" class="btn btn-primary" style="margin-top: 1.5rem;">Nochmal spielen</button>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Kontakt</h3>
<p>E-Mail: <a href="mailto:info@beispiel.de">info@beispiel.de</a></p>
</div>
<div class="footer-section">
<h3>Links</h3>
<ul>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="ueber_uns.html">Über uns</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</div>
<div class="footer-section">
<p>&copy; 2025 EIS Lernprojekt an der PH Weingarten</p>
</div>
</div>
</footer>
<script src="js/navbar.js"></script>
<script src="js/quiz.js"></script>
</body>
</html>