Lesson details

Key learning points

  1. In this lesson, we will build upon a laser tag website by designing and adding new pages.

Licence

This content is made available by Oak National Academy Limited and its partners and licensed under Oak’s terms & conditions (Collection 1), except where otherwise stated.

Loading...

3 Questions

Q1.
What is wrong with this image tag? <img scr="man.png">
img should say image
Correct answer: The scr should be src
There is no closing tag
There should be a hyphen ‘-’ between img and scr
Q2.
What is the purpose of the alt tag within an image?
Correct answer: For accessibility, holding alternate text for screen readers
Lets you have an image to act as a hyperlink so you can click on it
So that you can have alternative images if one isn’t there
To let HTML alternate (flick) between one image and another
Q3.
What would this code produce? ˂a href = "www.bbc.co.uk/news/"˃ BBC News˂/a˃
Creates a heading which says ‘BBC News’
Correct answer: Creates a hyperlink with the text ‘BBC News’ which goes to www.bbc.co.uk/news/ when clicked
Creates a link to www.bbc.co.uk/news/ with alternative text of ‘BBC News’
Inserts an image of the BBC news logo

3 Questions

Q1.
Which of the following sentences most accurately describes this HTML code: <img src="space.jpg">
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
Correct answer: It will display an image that is hosted on a local computer/web server in the same directory to the HTML file
It will display an image that is hosted on someone else's web server
Q2.
Which of the following sentences most accurately describes this HTML code: <img src="https://www.space.com/space.jpg">
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
Correct answer: It will display an image that is hosted on someone else's web server
Q3.
What is the correct HTML for creating a hyperlink to a local web page named "page2.html"?
<a href ="page2">Page 2</a>
Correct answer: <a href="page2.html">Page 2</a>
<a url="page2.html">Page 2</a>
<a>page2.html</a>

Lesson appears in

UnitComputing / HTML

Computing