Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions quiz-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@
<title>Quiz App</title>
</head>
<body>
<div class="verify-container" id="verify">
<h2>Human Verification</h2>
<p class="verify-instr">
Drag the <span class="red-word">red</span> square onto the
<span class="blue-word">blue</span> square to start the quiz.
</p>

<div class="stage">
<div id="drop" class="block blue"></div>
<div id="drag" class="block red" draggable="true"></div>
</div>

<p id="verify-msg"></p>
</div>
<div class="quiz-container" id="quiz">
<div class="quiz-header">
<h2 id="question">Question text</h2>
Expand All @@ -33,6 +47,7 @@ <h2 id="question">Question text</h2>
</ul>
</div>
<button id="submit">Submit</button>
<p id="feedback" class="feedback"></p>
</div>
<script src="script.js"></script>
</body>
Expand Down