Workshop
Quiz
-
What are the three types of CSS styles?
-
What should you create in order to use the same styles for all the web pages in a website?
-
If you redefine the <h3> tag as red in an external style sheet and then redefine the <h3> tag as blue in the web page, what color will h3 text be in that page?
Quiz Answers
-
The three types of CSS styles are classes, redefined HTML tags, and advanced styles (CSS selectors).
-
You need to create an external style sheet and link it to each page in your website.
-
The text will be blue because the internal style, the one defined in the page, is closer to the actual code and is dominant.