Quiz: 1. Grundgerüst und Verlinkung
This commit is contained in:
parent
6e59e9fb2c
commit
dc8b6746ef
3 changed files with 28 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ const navigation = `
|
|||
<a href="team.html">Steckbrief</a>
|
||||
<a href="notenrechner.html">Notenrechner</a>
|
||||
<a href="textanalyse.html">Textanalyse</a>
|
||||
<a href="quiz.html">Quiz</a>
|
||||
<a href="kontakt.html">Kontakt</a>
|
||||
<a href="impressum.html">Impressum</a>
|
||||
<button id="dark-mode-toggle"></button>
|
||||
|
|
|
|||
1
js/quiz.js
Normal file
1
js/quiz.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
console.log("Quiz lädt");
|
||||
26
quiz.html
Normal file
26
quiz.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Quiz – Cyanotypie</title>
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="icon" href="img/Favicon.jpg" type="image/jpeg">
|
||||
</head>
|
||||
<body>
|
||||
<script src="js/nav.js"></script>
|
||||
|
||||
<main>
|
||||
<h1>Quiz</h1>
|
||||
<p>Teste dein Wissen über Cyanotypie!</p>
|
||||
<div id="quiz"></div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2026 – Lernprojekt EIS</p>
|
||||
</footer>
|
||||
|
||||
<script src="js/quiz.js"></script>
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in a new issue