NEW
Font size
WorksheetsHTML Quiz
Total questions: 10
Worksheet time: 3mins
what is margin
difference between tags
difference between border and text
both a & B
none
Choose the correct HTML element for the largest heading:
<h1>
<h6>
<heading>
<head>
What is the correct HTML element for inserting a line break?
<break>
<br>
<lb>
none
What is the correct HTML for adding a background color?
Next ❯
<body bg="yellow">
<background>yellow</background>
<body style="background-color:yellow;">
none
What is the correct HTML for creating a hyperlink?
<a url="http://www.w3schools.com">W3Schools.com</a>
<a>http://www.w3schools.com</a>
<a name="http://www.w3schools.com">W3Schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
How can you open a link in a new tab/browser window?
<a href="url" target="_blank">
<a href="url" new>
<a href="url" target="new">
Next ❯
Inline elements are normally displayed without starting a new line.
True
False
What is the correct HTML for inserting an image?
Next ❯
<image src="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<img href="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
Block elements are normally displayed without starting a new line.
False
True
In HTML, which attribute is used to specify that an input field must be filled out?
validate
placeholder
required
formvalidate
