Project - 3

Project 3: Interactive Quiz App

Build a multiple-choice quiz with several questions. Show the score at the end and allow the user to restart the quiz.

✦ HTML + CSS + JS Editor
▶ Live Output

👀 Show Example Solution
<div id="quiz">
  <p class="question">Question text here?</p>
  <button onclick="answer(0)">Option 1</button>
  ...
</div>

<script>
  // Quiz logic with questions array and scoring
</script>