NEW
Font size
WorksheetsY9 - HTML - L4 - css RECAP
Total questions: 14
Worksheet time: 7mins
What does HTML stand for?
Hyper Text Markup Language
Home Tool Markup Language
Hyperlinks and Text Markup Language
Hashing Text Markup Language
Which tag contains the content of your webpage? <head> or <body>
<head>
<body>
If the opening tag is <h1>, what will the closing tag look like?
/h1
<h1>
</h1>
</>
Does the IMG (image tag) need a closing tag?
YES
NO
Which TAG do you need for an unordered list?
Which TAG do you need for an ordered list?
Which of the following sentences most accurately describes this HTML code:
<img src="space.jpg">
It will display an image that is hosted on someone else's web server
It is a hyperlink to a image entitled "space.jpg"
It will display an image that is hosted on a local computer/web server in a directory separate to the HTML file
It will display an image that is hosted on a local computer/web server in the same directory to the HTML file
Which of the following sentences most accurately describes this HTML code:
<img src="https://www.space.com/space.jpg">
It will display an image that is hosted on someone else's web server
It is a hyperlink to a image entitled "space.jpg"
It will display an image that is hosted on a local computer/web server in a directory separate to the HTML file
It will display an image that is hosted on a local computer/web server in the same directory to the HTML file
What is the correct HTML for creating a hyperlink to a local web page named "page2.html"?
<a>page2.html</a>
<a href="page2.html">Page 2</a>
<a url="page2.html">Page 2</a>
<a href ="page2">Page 2</a>
What does CSS stand for?
Colourful Style Sheets
Cascading Style Sheets
Creative Style Sheets
Computer Style Sheets
In the following CSS, what would be the correct term for "p"?
Selector
Property
Value
What is the purpose of the alt tag within an image?
For accessibility, holding alternate text for screen readers
So that you can have alternative images if one isn’t there
In the following CSS, what would be the correct term for "font-size"?
Selector
Property
Value
In the following CSS, what would be the correct term for "red"?
Selector
Property
Value
