Untitled

 avatar
unknown
plain_text
a year ago
1.2 kB
5
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Heart Anatomy Training</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Heart Anatomy Training</h1>
    </header>
    <main>
        <section id="anatomy-overview">
            <h2>Heart Anatomy Overview</h2>
            <p>Welcome to the Heart Anatomy Training program. Explore the anatomy of the human heart through interactive models and quizzes.</p>
            <button onclick="startQuiz()">Start Quiz</button>
        </section>

        <section id="quiz" style="display:none;">
            <h2>Quiz: Identify the Heart Structures</h2>
            <div id="quiz-container"></div>
            <button onclick="nextQuestion()">Next</button>
        </section>

        <section id="results" style="display:none;">
            <h2>Quiz Results</h2>
            <p id="score"></p>
            <button onclick="restartQuiz()">Restart Quiz</button>
        </section>
    </main>

    <script src="script.js"></script>
</body>
</html>
Editor is loading...
Leave a Comment