WorksheetsHTML quiz - Day 3
Total questions: 10
Worksheet time: 3mins
HTML is
Scripting language
Markup Language
Programming Language
HTML elements are made from
opening, closing tag
opening tag, content, closing tag
closing tag
DOM - Document Object Model
How many types of heading does HTML contain?
five
two
four
six
Choose the correct HTML element for the largest heading:
<head>
<h6>
<h1>
<heading>
What is the correct HTML element for inserting a line break?
<lb>
<break>
<br>
<hr>
What is the correct HTML for adding a background color yellow?
<background>yellow</background>
<body bg="red">
<body style="background-color:yellow;">
Choose the correct HTML element to define important text:
<strong></strong>
<important></important>
<!jovan></jovan>
<important></define>
What is the correct HTML for creating a hyperlink for Robokids website?
<a href="http://www.robokids.xyz">Robokids</a>
<a>http://www.robokids.xyz</a>
<a url="http://www.robokids.xyz">Robokids</a>
<a name="http://www.robokids.xyz">Robokids</a>
How can you open a link in a new tab/browser window?
<a href="url" target="new">
<a href="url" new>
<a href="url" target="_blank">
How can you make a ordered list?
<ul>
<dl>
<list>
<ol>
