What does HTML describe? correct answers The structure of a web page
Tags use characters that sit inside correct answers Angled Brackets <>
Is this an opening tag or a closing tag? </p> correct answers Closing
What is another term used to describe tags? correct answers Elements
What do attributes tell us? correct answers Something about the content of the element
Which two parts make up an attribute? correct answers Name and value
Where is the <title> tag displayed correct answers In the tab at the top
How many levels of heading are there in HTML? correct answers 6
Which element is used to create the superscript th on the date 4th september? correct answers
<sup>
If 5 spaces are left between two words, how many will appear in the web browser? <p> I love
code.</p> correct answers One
Which element is used to create a line break in the middle of a paragraph? correct answers <br />
Which element bolds words in HTML? correct answers <em>
Which element indicates that a paragraph of text is a quote from another source? correct answers
<blockquote>
What does the element <abbr> specify? correct answers Abbreviation & Acronym
Which tag would you use to reference a piece of work (such as a book or a film)? correct
answers <cite>
Which element is used to 'strikethrough' text? correct answers <s>
Which element is used to create a numbered list? correct answers <ol>
What is the ol in the <ol> element stand for? correct answers Ordered List
What does the <ul> element create? correct answers A list of bullet points
What is the order of a correctly nested unordered list? correct answers <ul> then <li> & </li>
then </ul>