What is the name of a basic HTML element?
Tag
What HTML tag is used to create a paragraph?
p
What is the main purpose of CSS?
Styling (e.g. color, font face/style, positioning)
What are two ways to apply styles to specific HTML elements on a page?
Class, ID
What is the file extension for an html document?
.html
What is the file extension for a css sheet?
.css
How do you link an external stylesheet to an HTML document?
Using the <link> tag in the <head> section of the HTML.
What is the difference between an HTML opening tag and a closing tag?
Closing tag has a /
What character (e.g. 'a' or '^') goes at the end of every CSS declaration?
Semi-colon (;)
what are the property and value that allow you to create a flexbox container?
display: flex;
Which of these elements will have the biggest font? <p>, <h1> or <h6>
h1
The background color of a whole page can be changed by editing this CSS selector.
Body
What is the term for the "grammatical structure" in which HTML and CSS are written?
Syntax
What is the term for tags that are inside other tags?
nested/nesting
Name one of the three "elements" in a CSS rule? E.g. h1{color: orange;}
Selector, Property, Value