First Commit
This commit is contained in:
35
INFO-1272 (JS 1)/Notes/Final/index.html
Normal file
35
INFO-1272 (JS 1)/Notes/Final/index.html
Normal file
@@ -0,0 +1,35 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user