Mix it up
HTML
CSS
100

What is the name of a basic HTML element?

Tag

100

What HTML tag is used to create a paragraph?

p

100

What is the main purpose of CSS?

Styling (e.g. color, font face/style, positioning)

200

What are two ways to apply styles to specific HTML elements on a page?

Class, ID

200

What is the file extension for an html document?

.html


200

What is the file extension for a css sheet?

.css

300

How do you link an external stylesheet to an HTML document? 

Using the <link> tag in the <head> section of the HTML.

300

What is the difference between an HTML opening tag and a closing tag?

Closing tag has a /

300

What character (e.g. 'a' or '^') goes at the end of every CSS declaration?

Semi-colon (;)

400

what are the property and value that allow you to create a flexbox container?

 display: flex;

400

Which of these elements will have the biggest font? <p>, <h1> or <h6>

h1


400

The background color of a whole page can be changed by editing this CSS selector.

Body

500

What is the term for the "grammatical structure" in which HTML and CSS are written?

Syntax

500

What is the term for tags that are inside other tags?

nested/nesting

500

Name one of the three "elements" in a CSS rule? E.g. h1{color: orange;}

Selector, Property, Value

M
e
n
u