The Basics
HTML
CSS
CSS 2
Random
100


This is the difference between an HTML opening tag and a closing tag.




What is the closing " / "?

100


This HTML tag is used to create a paragraph

What is a <p> tag?

100


This is the main purpose of CSS.

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

100


This type of bracket must surround CSS declarations.

What are { Curly brackets.}?

100


this heading will produce the smallest font size.

what is an <h6> ?

200


This essential section will hold the majority of a website's content that is displayed on the page.

What is the body?

200


This is the name of the tag used to create hyperlinks.

What is an Anchor tag?

Also called just the "<a>" tag.

200

Besides the actual color name, "brown" you can use this: #964B00 to refer to a color.

 What is a color's hexadecimal value?

200

This identifies the element you want to modify?

What is the selector?

200

These characters identify a comment in HTML



what is <!-- comment -->?

300


This is what HTML stands for.

What is hyper text markup language?

300


This tag is used to begin table.

What is the <table> tag?

300


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

What is a Semi-colon (;)

300


This is the term that refers to the modifier of a given property, giving it an attribute, in CSS.

What is the Value?

300

This identifies a global selector

what is an " * "?

400


This is the term for the "grammatical structure" in which HTML and CSS is written.

What is the syntax?

400


Name two necessary tags used to create a list.

What are <ul>for an Unordered list,

<ol> for an Ordered list,

<li> for a List Item?

400


The background color of a whole page can be changed by creating a rule for this CSS element selector.

What is the "body" selector?

400

This term describes a single line of styling within a CSS rule. It includes an property and a value.

What is a Declaration?

400

This is the order of priority when styling an element, using "inline", "internal" and "external"?

what is inline, internal external?

500


This is the version of HTML are we using.

What is HTML 5?

500


This HTML attribute allows you to identify an element by a name in order to apply CSS to it.

What is class "." or ID "#"?

500


CSS can be applied to a website in three ways. Name two of them.

What are External, Internal, and Inline ?

500


This is the file extension for an external CSS style sheet?

What is .css ?

500


This folder holds all of the pieces of a website including HTML and CSS files.

what is the Root folder?