Lesson details

Key learning points

  1. In this lesson, we will look at the design considerations necessary to make a website as accessible as possible. We will then add images and links to a wesbite.

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 does HTML stand for?
Hashing Text Markup Language
Home Tool Markup Language
Correct answer: Hyper Text Markup Language
Hyperlinks and Text Markup Language
Q2.
If the opening tag is <h1>, what will the closing tag look like?
/h1
</>
Correct answer: </h1>
<h1>
Q3.
Which of these comes first? <head> or <body>
<body>
Correct answer: <head>

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

Lesson appears in

UnitComputing / HTML

Computing