NEW
Font size
WorksheetsHTML & CSS
Total questions: 40
Worksheet time: 22mins
</p>
</h1> is
Header Tag
Headline Tag
Half of a tag
Closing header tag
p {color: red;}
p {color: red;}
p {color: red;}
Which one of the following is a selector?
body {
color: green;
border: 0;
}
color
body
green
border
Which one is used to set background colour of a web page?
background-colour
background-color
background-position
background-image
Why won't the following anchor tag work?
<a href=https://www.google.com/>click here</a>
The link is incorrect. It should be ref, not href
The URL is missing quotation marks
There is no anchor tag in the code
The href is missing a closing tag
What type of tag is this: <!-- -->
comments
questions
paragraph
image
Which is the correct HTML order...?
<html> <head> </head> <body> </body> </html>
<html> <head> </head> <body> </html> </body>
<html> <body> </body> <head> </head> </html>
<head> </head> <body> </body> <html> </html>
