HTML Tags
CSS Properties
CSS in HTML
Misc
100

This tag is used for basic text parargraphs.

What is the p tag?

<p></p>

100

This property sets the color of text.

What is the color property?

color:

100

The purpose that CSS serves in HTML documents.

What is adding style?

100

The purpose that JavaScript serves in HTML documents.

What is adding functionality/interactivity?

200

This tag is used for the largest heading on a web page.

What is the h1 tag?

<h1></h1>

200

This property sets the size of text.

What is the font-size property?

font-size:

200

This tag is placed in the head of an HTML document to set CSS properties.

What is the style tag?

<style></style>

200

This is used to create blank space on a webpage (as if hitting ENTER on a keyboard).

What is the line break tag?

<br>

300

This tag allows you to put an image on a webpage.

What is the img tag?

<img></img>

300

This property can be used to make text sans-serif.

What is the font-family property?

font-family:

300

This CSS selector is used to identify a single HTML element.

What is the id selector?

id=""

#""

300

List two formats for identifying specific colors (shades) in CSS properties.

What are RGB and hex?

rgb(R, G, B)

#xxxxxxxx

400

This tag displays the name of the page on the browser tab.

What is the title tag?

<title></title>

400

This property adds space around the outside of an element.

What is the margin property?

margin:

400

This CSS selector is used to identify multiple HTML elements that need the same style applied to all.

What is the class selector?

class=""

.""

400

This tag is placed in the body of an HTML document to add JavaScript code.

What is the script tag?

<script></script>

500

This tag, also called an anchor tag, allows you to put a link on your webpage.

What is the a tag?

<a></a>

500

This property adds space within an element between the border and the content.

What is the padding property?

padding:

500

Name at least two units of measure used in CSS properties to set the size of an element.

What are pixels/px, %, em?

500

This is used within an HTML tag to specify functionality, design, and/or behavior.

What is an HTML attribute?

<img src=""></img>

M
e
n
u