Files
2025-12-19 03:04:17 -05:00

35 lines
1012 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>INFO-1272 Final Notes</title>
</head>
<body>
<h1>INFO-1272 Final Notes</h1>
<fieldset>
<legend>Setup Quiz</legend>
<label for="studentName">Student Name:</label><br>
<input type="text" name="studentName" id="studentName" placeholder="Enter your name"><br>
<label for="numQuestions">Number of questions:</label><br>
<input type="number" name="numQuestions" id="numQuestions" placeholder="Number of questions"><br>
<button id="startBtn">Start</button>
</fieldset>
<div id="quizArea" style="display: none;">
<p id="currentStudent"></p>
<p id="question"></p>
<input type="text" id="answerInput">
<button id="submitAnswer">Submit</button>
<p id="feedback"></p>
</div>
<div id="results"></div>
<script src="index.js"></script>
</body>
</html>