Intro to HTML Review
Quiz by Hsu YeeMon
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
- edit the questions
- save a copy for later
- start a class game
- view complete results in the Gradebook and Mastery Dashboards
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
Our brand new solo games combine with your quiz, on the same screen
Correct quiz answers unlock more play!
- Q1
What is the correct format for "comment" in HTML?
<!-- this is a correct comment -->
// this is a correct comment
<!-- this is a correct comment >
30s - Q2
What does HTML stand for?
Hyperlink Markup Language
Home tool Markup Language
Hypertext Markup Language
30s - Q3
Choose the correct element for the largest heading.
<h6>
<head>
<h1>
30s - Q4
Choose the correct element for a line break.
<lb/>
<br/>
<break>
30s - Q5
Choose the correct form of inserting an attribute.
<p id=a> Text </p>
<p id="a" > Text </p>
<p id:a> Text </p>
30s - Q6
Which of the following symbol indicates the closing of a tag?
!
\
/
30s - Q7
How is document type initialized in HTML5?
<DOCTYPE html>
</DOCTYPE html>
<!DOCTYPE html>
30s - Q8
<p> is one of the elements.
falsetrueTrue or False30s - Q9
<area shape="circle" coords="0,0,100" href="home.html" alt="home" />
The above element has the content .
falsetrueTrue or False30s