Font size
WorksheetsY8 - WebDev - L03 - Do Now
Total questions: 22
Worksheet time: 13mins
What tag starts and ends an unordered list?
<p> </p>
<ol> </ol>
<ul> </ul>
<h1> </h1>
What is the biggest heading tags?
<p> </p>
<h6> </h6>
<ul> </ul>
<h1> </h1>
What tags start and end a paragraph tag?
<p> </p>
<h6> </h6>
<ul> </ul>
<h1> </h1>
What is the correct tag for a hyperlink?
<a href="code.org">Code.org</a>
<a href="code.org">"Code.org"</a>
<href="code.org">Code.org</href>
<a href="code.org"><Code.org</a>
What tag starts and ends a list?
<p> </p>
<ol> </ol>
<ul> </ul>
<li> </li>
What is the smallest heading tags?
<p> </p>
<h6> </h6>
<ul> </ul>
<h1> </h1>
What tag starts and ends an ordered list?
<p> </p>
<ol> </ol>
<ul> </ul>
<h1> </h1>
Where do we always type all of our tags?
between the head tags
between the body tags
wherever you want
between the paragraph tags
What is the correct tag for an image?
<img src="image1.jpg" alt="Image1">
<image src="image1.jpg" alt=Image1/>
<img scr="image1.jpg">alt="Image1">
<image scr="image1.jpg alt="Image1"/>
Place the tags in order for the start of a webpage
< html >
< head >
< title >
< body >
HTML stands for
Hyper Tags Marked Language
High Tech Media Language
Hyper Text Markup Language
High Text Media Language
Which of the following is the correct way to create a heading in HTML?
<h1>Heading</h1>
<heading>Heading</heading>
<head>Heading</head>
Match the following HTML tag with their formatting purpose:
< u >
Bold
< b >
Italic
< i >
Underline
< p >
Paragraph
To change the colour of the writing on the screen to red, which of the following would you use:
< colour = "red">
<font color = "red">
< font colour = "red">
< font = "red">
Once the paragraph tag has been used <p> you then need to close the tag with </P>
True
False
Which tag do you use to start a list item?
<ul>
<li>
<ol>
<list>
Which tag do you use to insert an image?
<image>
<img>
<href>
</img>
Label the Diagram
Tag
Attribute
This tag shows up in the tab above the url bar
<!DOCTYPE>
<html>
<title>
<head>
Defines a hyperlink
<p>
<h1>
<title>
<a>
Defines an image
<h1>
<p>
<button>
<img>
Creates a bulleted list (Unordered List)
<ul>
<li>
<li>
</ul>
<ol>
<li>
<li>
</ol>
<li>
</li>
<p>
<li>
<li>
</p>
