NEW
Font size
WorksheetsCSS
Total questions: 25
Worksheet time: 13mins
p {color: red;}
p {color: red;}
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 the text in 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;
}
This is a picture of a ____.
CSS Rule
HTML Rule
Tags
Coding
What color will this element be?
Green
Blue
Red
No color
What is missing from this HTML skeleton?
<!DOCTYPE html>
<html>
<body>
</body>
</html>
<head></head>
<div></div>
<img></img>
<head>
Where should you put the link tag to connect your CSS and HTML file?
Between the <head> </head> in HTML
Between the <body> </body> in HTML
None of the above.
Which list tag would you use for an ordered list
<h1></h1>
<ol></ol>
<ul></ul>
<a></a>
