48 lines
No EOL
1.4 KiB
HTML
48 lines
No EOL
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Quiz</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<link rel="icon" href="img/favicon.png" type="image/png">
|
|
</head>
|
|
<body>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="ueber_uns.html">Über mich</a></li>
|
|
<li><a href="eis_projekt.html">EIS Projekt</a></li>
|
|
<li><a href="kontakt.html">Kontakt</a></li>
|
|
<li><a href="impressum.html">Impressum</a></li>
|
|
<li><a href="notenrechner.html">Notenrechner</a></li>
|
|
<li><a href="textanalyse.html">Textanalyse</a></li>
|
|
<li><a href="quiz.html">Quiz</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<main>
|
|
<header>
|
|
<img src="img/logo.svg" alt="Logo" style="height: 40px;">
|
|
<h1>Quiz</h1>
|
|
<p>Interaktive Softwareanwendung</p>
|
|
</header>
|
|
|
|
<section>
|
|
<div class="question-container">
|
|
<h2>Frage 1: Wofür brauchen wir JavaScript?=</h2>
|
|
<button class="Design" data-correct="false">Design</button>
|
|
<button class="Dynamik" data-correct="true">Dynamik</button>
|
|
<button class="Struktur" data-correct="false">Struktur</button>
|
|
|
|
<p id="feedback-1"></p>
|
|
</div>
|
|
<h2></h2>
|
|
<p><p>
|
|
</section>
|
|
</main>
|
|
<script src="js/quiz.js">
|
|
</script>
|
|
</body>
|
|
</html> |