Font size
WorksheetsHTML & CSS Review
Total questions: 45
Worksheet time: 1hrs 9mins
What is the opening tag for a paragraph?
<p>
</p>
<para>
</para>
Which heading tag will give you the smallest text size?
<h1> </h1>
<h3> </h3>
<h6> </h6>
<h10> </h10>
Select all of the closing tags
<p>
</h1>
</li>
</ul>
<ol>
In the code below, what tags do you need to add to make the list a numbered list?
<ol> </ol>
<ul> </ul>
What does HTML stand for?
Hyper Teachers Marking Language
Hypertext MakeUP Language
Happy Techies Missing Lasagna
Hypertext Markup Language
All of the webpage content goes in between the...
<head> </head>
<h1> </p>
<ol> </ol>
<body> </body>
Which is the proper way to write an h1 tag?
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
What correction needs to be made in the code?
line 8 - <p> </p> tags needed
line 8 - <li> </li> tags needed
line 8 - <h6> </h6> tags needed
line 8 <par> </par> tags needed
Which is NOT a CSS property?
font-family
color
text-size
text-align
Which type of brackets are used with CSS?
< >
[ ]
\ /
{ }
<img src="frog.jpg" alt ="picture of a frog">
Annie wants the name of her product to be the main heading at the top of her webpage. Which tag defines the main heading in a web document?
What tag defines the beginning of the html language?
CSS stands for
Code Style Sheet
Coding Style Sheet
Cascading Sheet Style
Cascading Style Sheet
What symbol is used to indicate an end tag?
>
/
}
;
Part of a program that does not work correctly.
Moth
Ant
Bug
Fly
How do you adjust the font size on a CSS style sheet?
font-decoration
text-decoration
color
font-size
How do you adjust the background color on a CSS style sheet?
color
border-color
background-color
float
sets the color of words in a paragraph
h1 {
color: pink;
}
img {
color: pink;
}
body {
color: pink;
}
p {
color: pink;
}
Select the rule set to make ALL of your content your web page blue and centered.
p {
color: blue;
}
body {
text-align: left;
color: blue;
}
p {
text-align: center;
color: blue;
}
body {
text-align: center;
color: blue;
}
Which CSS property will change the font style of the text?
font-size
text-align
font-famiy
text-decoration
In Web Design, RGB is the abbreviation for…
Red-Gray-Black
Red-Green-Black
Red-Green-Blue
Red-Gray-Brown
a {color: blue;}
p {font-size: 10px;}
body {color="red";}
<h2> elements on a page?h2 { color: rgb(255, 0, 0); }#h2 { color: rgb(255, 0, 0); }<h2> { color: rgb(255, 0, 0); }$h2 { color: rgb(255, 0, 0); }What is the purpose of HTML?
To control space and time
To create webpages
To confuse and infuriate users
To provide Webpage security
Which tag is an end tag?
<body>
</body>
<p>
<img>
What symbol should you use to target a class names in css?
#
()
.
class
Kareb wants to begin a new line within a paragraph of text on a webpage. Which code should she use?
<li>
<h1>
<hr>
<br>
What is the correct code for a paragraph in css?
P
<p> </p>
.p
p {
}
I want my headings to be different colors. What should I do?
Assign them a class
You can't do this
Make each heading a different "size"
This is my image tag, but my image won't appear. Why?
it has scr instead of src
the file name is in the wrong spot
.jpg should be capitalized
there needs to be a / at the end
Why won't this navigation link page work?
The href link should be "Foods.html"
The end tag should be <a> not </a>
The "Foods" page hasn't been made active
The link should be <a href = "Foods.html"
