HTML Tags/Elements
HTML Attributes
CSS
100

What does the p in <p> stand for?

Paragraph

100

What does <ul> stand for?

unordered list

100

How do you make all the <p> elements on a page red?

p {
color: red;
}

200
What is the usual symbol to close a tag?

a forward slash like this </p>

200

What kind of list will show bullet points?

An unordered list, an ordered list would show a numbered list.

200

What should the type always be when linking to a CSS stylesheet?

type should always ='text/css'

ex) 

link href='https://fonts.googleapis.com/css?family=Roboto:400,300,500,100' rel='stylesheet' type='text/css'>

300

What does the h in <h1> stand for?

Heading

300

True or False, ids are always in quotes. ex) <h1 id="A1">Hello World</h1> 

True

300

Can you define in-line styling?

Its styling that goes right into the HTML like so: 

<p style="color: red; font-size: 20px;">I'm learning to code!</p> 

400

How many heading tags are there in HTML?

Six

400

What does <br> stand for and what does it do?

Break. The <br> line break element will create a line break in text and is especially useful where a division of text is required, like in a postal address. The line break element requires only an opening tag and must not have a closing tag. 

400

What does an ID look like in CSS?

.brand {
}

500

What does src mean in <img src="path/to/image" alt="text describing image" /> ?

Source

500

How do you make a word bold?

<strong>Hello!</strong>

500

Put these in order of uniqueness. IDs, Tags, Classes.

IDs
Classes
Tags