NEW
Font size
WorksheetsHTML Quiz 2 (25Q)
Total questions: 25
Worksheet time: 12mins
Which of the listed heading tags creates the largest heading?
h2
h3
h4
h6
HTML coding involves using ____________ to create webpages.
Tabs
Tags
Labels
Quotes
This coding is used to create a paragraph:
<pr></pr>
<p></p>
<para></para>
<par></par>
Which is the correct HTML tag for creating an unordered list?
<ul>
<uline>
<u>
<under>
The 7th grade students want to make a list of the winners of a race using numbers They would use which HTML tag?
<ul></ul>
<ol></ol>
<list></list>
Everything visible on a web page goes between these two tags.
<body> </body>
<title> </title>
<header> </header>
None of the Above
Which of the following creates the smallest header?
<H2></H2>
<H3></H3>
<H4></H4>
<H6></H6>
What does the following statement do: color:blue;
It turns the page blue
It turns the text blue
It turns the page anything but blue
It makes a blue box around an image
The tag is used for the image:
<body>...</body>
<br>
<title>...</title>
<img>
Where does the content of the <title> element show up in the browser?
At the top of the page.
In the browser tab.
It's metadata, so it doesn't show up.
At the bottom of the page.
</p>
How does a page of HTML start?
<@DOCTYPE html>
<?DOCTYPE html>
<!DOCTYPE html>
</DOCTYPE html
<th> is used for:
one cell in a row of headers
one data cell
one row of headers
one column of headers
The use of <tr> is to add:
one column on the right
one cell in a table
one row of table
one column of table
What does <td>mean?
Table device
Table draw
Table data
Table dominant
sets the color of words in a paragraph
h1 {
color: pink;
}
img {
color: pink;
}
body {
color: pink;
}
p {
color: pink;
}
Computer Style Sheets
Cascading Style Standard
Computer Style Standard
Which is correct syntax for a single CSS declaration?
colour:black;
What code properly links your CSS to your HTML?
<link href="styles.css">
<link href="styles.css" rel="stylesheet">
<link href="stylesheet" rel="styles.css">
<link rel="styles.css">
Code this using CSS:
A green paragraph
p {
color=green:
}
p {
color:green;
}
p {
colour:green:
}
What is this tag <li>?
list item
line indent
left indent
Which of the following is the correct CSS link tag?
<link rel="styles" href="stylesheet.css">
<link href="stylesheet">
<link rel="stylesheet" src="styles.css">
<link rel="stylesheet" href="styles.css">
