NEW
Font size
WorksheetsHTML Quiz Grade 7
Total questions: 10
Worksheet time: 4mins
What tag starts and ends an unordered list?
<p> </p>
<ol> </ol>
<ul> </ul>
<h1> </h1>
What is the biggest heading tags?
<p> </p>
<h6> </h6>
<ul> </ul>
<h1> </h1>
What tag starts and ends an ordered list?
<p> </p>
<ol> </ol>
<ul> </ul>
<h1> </h1>
Where do we always type all of our tags?
between the head tags
between the body tags
wherever you want
between the paragraph tags
What is the correct tag for an image?
<img src="image1.jpg" alt="Image1">
<image src="image1.jpg" alt=Image1/>
<img scr="image1.jpg">alt="Image1">
<image scr="image1.jpg alt="Image1"/>
Creates a numbered list (Ordered List)
<ul>
<li>
<li>
</ul>
<ol>
<li>
<li>
</ol>
<li>
</li>
<p>
<li>
<li>
</p>
Creates a bulleted list (Unordered List)
<ul>
<li>
<li>
</ul>
<ol>
<li>
<li>
</ol>
<li>
</li>
<p>
<li>
<li>
</p>
This tag tells the computer this is a document written in HTML.
<p>
<!DOCTYPE html>
<h1>
<html>
