WorksheetsHTML & CSS Wrap-up 3rd
Total questions: 25
Worksheet time: 22mins
Which of the following tags will create a bulleted list on a website?
<p>...</p>
<h3>...</h3>
<ol>...</ol>
<ul>...</ul>
All of the following are empty tags except?
<hr>
<br>
<p>...</p>
<img>
Which of the following images is an example of an ordered list?
All of the following are examples of container tags except?
<img src="dog.jpg>
<p>Hello World!</p>
<h1>Days of the Week</h1>
<a href="bhms.net">BHMS</a>
Why will the code in the image not display the list correctly?
The code should use an <ol> tag.
The code needs <li> tags for each item on the list.
A <p> tag is needed to separate the text.
The code needs to be moved to in between the <head> tag.
Which of the tags below is used to create a title on a website?
<head>
<p>
<ol>
<h3>
The <p> tag can be used to separate text such as an address or a poem on a website.
True
False
What does CSS stand for?
Creative Style Sheets
Cascading Style Sheets
Computer Style Sheets
Colorful Style Sheets
Which of the following headings tags would display the largest?
<h6>
<h2>
<h5>
<h1>
What is the difference between HTML and CSS?
CSS is a type of HTML.
HTML gives a webpage structure. CSS provides styling.
CSS structures a webpage. HTML strictly provides styling.
There is no difference.
The content you want to display on your website should be between which HTML tags?
<head>...</head>
<h1>...</h1>
<body>...</body>
<p>...</p>
HTML is a ______ language.
programming
markup
logic
machine
A container tag surrounds the content that needs to be formatted with an opening and closing tag.
True
False
Check the statement that is NOT true about a container tag.
The <br> tag is an example of a container tag.
The container tag has an opening and a closing tag.
The <li>...</li> is an example of a container tag.
The container tag is used to structure text on a webpage.
Which character is used to close a container tag?
<
>
:
/
What is the correct way to write the tag in the image?
<h1>My Day at School<h3>
<h1>My Day at School<h1>
<h1>My Day at School</h1>
</h1>My Day at School<h3>
What is the correct way to write the tag in the image?
</p>Fun Friday Activities<p>
p-Fun Friday Activities/p
<p>Fun Friday Activities<p>
<p>Fun Friday Activities</p>
Which set of tags were used to create the numbered list in the image?
<ul>...</ul>
<ol>...</ol>
<p>...</p>
<br>...</br>
In which section of a webpage file would you find a ruleset that would change the color of the text on a webpage?
HTML
CSS
The selector is the element or tag on the website you want to change. Draw an X on the selector of the ruleset below.
The value of a ruleset is what you want to change the element, such as changing the font color. Draw an X on the value of the ruleset below.
The property of an element is what you want to change about an element. Draw an X on the property of the ruleset in the image.
Which of the following would be the correct ruleset to change the title of a website to blue?
h1 {color - blue}
h1 [blue, color]
h1 {color: blue;}
h1 color: blue;
What needs to be added to the ruleset in the image that will display green text for all <h3> headings?
<
>
color
hue
Which change will not be applied to the text on a webpage according to the ruleset in the image?
It will change the font type to Comic Sans.
It will change the size of the text to 20 pixels.
It will change the color of the title of hot pink.
It center the title.
