CSS
Formatting
Tags
Text
100

What CSS stands for

What is Cascading Style Sheet?

100

The shortcut to add in all formatting at the top of a document

What is HTML:5?
100

Fill in the blank:

<img ___="www.imagesources.com/funnyimage">

What is src?

100

The number of Heading sizes there are.

What is 6?

200

Background Color

What is "background-color: '######';"?

200

The first line in every document

What is "<!doctype HTML>"?

200

What is the formula for a button that goes to google?

What is "<button onclick="window.location.href='https://google.com'">Google</button>"?

200

The tag to make a new line in text

What is <br>?

300

Font Color

color: ######;

300

This tag goes at the top of the window in Safari.

What is title?
300
The tag for a video

<video controls width=#### length=####">

    <source

      src="media/video name.mp4"

      type="video/mp4">

  </video>

300

The tag to add a horizontal grey line through your text

What is <hr>?

400

Font Type

font-family: FONT;

400

This tag defines the main part of your code.

What is Body? 

400

The tag to make a form

<form>

</form>

400

The tag to highlight text.

What is "<mark></mark>"?

500

How you center an image in CSS

body img{

display: block;

margin: auto;

}

500

This tag divides your code into more understandable pieces.

What is "div"?

500

The way to make a "select" input field in a form.

<select>

<option>option 1 

<option>option 2

<option>option 3

<option>option 4

</select>

500

The two ways to make text bold.

<strong></strong> and <b></b>