Return to course: Introduction to HTML and CSS
Smart Website Solutions - Utah
Previous
Previous Section
Next
Next Lesson
Quiz: HTML and CSS Basics
What does the following HTML code do?
Visit Example
*
Displays an image on the webpage.
Creates a link to another webpage.
Adds a button for submitting a form.
Which CSS property would you use to change the text color of a paragraph?
*
font-size
color
background-color
How would you add a background color of yellow to all elements on a webpage using CSS?
*
/* Fill in the correct CSS */
div {
: yellow;
}
What is the purpose of the tag in HTML?
*
To create a list.
To display an image.
To make text bold.
What is the correct way to link a CSS file to an HTML document?
*