Font size
Worksheetshtml Assessment
Total questions: 70
Worksheet time: 3610secs
In a <table>, what does the <tr> tag do?
it defines the table row
It displays the data for that cell on screen
It doesn't do anything
Makes the data in that cell bold like a heading
Which is the correct way to insert an image
<img="image.jpg"/>
<img src="image.jpg"/>
<image.jpg>
<img src:image.jpg>
Which tag is used in ordered lists and unordered lists to define a list item
<b>
<i>
<p>
<li>
Which code below is correct for a hyperlink
<a herf="https://google.com">Click Me</a>
<a>Click Me>"https://google.com"</a>
<a href="https://google.com">Click Me</a>
<a>"https://google.com"Click Me</a>
Which of the following BEST explains the difference between a <p> tag and a <br> tag?
The <br> tag produces a blank line, while the <p> tag does not
The <p> tag produces a blank line, while the <br> tag does not
What tags start and end a paragraph tag?
<p> </p>
<h6> </h6>
<ul> </ul>
<h1> </h1>
What tag starts and ends a list?
<p> </p>
<ol> </ol>
<ul> </ul>
<li> </li>
HTML is...
The programming language used to tell websites what to look like
It is a piece software used to make games
It is the programming language used to design posters
h1
p
a href
body
<h1> is bigger than <h2>
body{background-colour=red}
body[background-color=red]
<p> Hanna had won the battle <p>
<h3> Section A </h3>
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
Which of the following matches the output from the HTML code below?
<p><u>Hello <i>there<i><u><p>
Hello there
Error
Hello there
Hello there
(a) languages are used to create websites. The most common Markup Language used is (b) . HTML uses tags to describe the (c) of the webpage. They are made up of a series of (d) that tell the Web browser how to display its information. Tags come in pairs. Each pair will have an (e) tag.
Match the following Part 2
What tag contains all the contents that is to be shown on a website?
<body>
What tag contains the title and meta information of the document?
<head>
What tag identifies a paragraph?
<p>
What tag states you are using HTML?
<html>
What tag contains the title and meta description of the document?
<title>
<head>
<body>
<h>
Match the following Part 3
What tag is used to insert an image?
<img src = "..." >
What tag is used to insert a link?
<a href = "..."> ... </a>
What tag is used to insert a video?
<iframe ...></iframe>
What tag is used for an ordered list?
<ol> ... </ol>
What tag is used for an unordered list>
<ul> ... </ul>
<p> Hanna had won the battle <p>
<h3> Section A </h3>
Would set the size of the image PIC1.jpg?
Which tag is missing from line 41 of this code?
</html>
<close>
<end>
<stop>
<html>
What is missing from line 22 of this code?
" "
;
:
>
<
How will the text be aligned for line 24 of the code below?
Left
Fully Justified
Centre
Right
What colour will the word "James" be on line 22 of the code below?
Red
Pink
Black
Green
Blue
What lines do the section start and finish on?
1 and 39
3 and 12
25 and 32
14 and 39
What will be the background colour of the section on this page?
white
blue
red
green
yellow
What will be the height and width of the image that is displayed on this page?
Height = 200 Width = 300
Height = 20 Width = 30
Height = 300 Width = 200
Height = 2000 Width = 3000
Height = 250 Width = 350
What software do we use to code our websites?
Internet Explorer
Microsoft Word
Notepad++
Notepad
What is wrong with the body tag on line 14?
Spelling error
Missing speech marks
Missing colon
Missing semi colon
Which tag is missing from the code below?
</h1>
</head
</body>
<body>
</title>
What tag is missing from the code below?
none
<html>
</ul>
</ol>
</a>
What does the font measurement 'px' stand for?
Part Explained
Pixel
Paragraph Extra
Picture
Which HTML code allows you to display an image on the left or right hand side of the website?
Align
Move
Float
Shift
Which code opens a hyperlink in a new tab in the browser?
target="new_tab"
target="_tab"
target="_blank"
target="_newtab"
