HTML
CSS
Operators
Loops
Conditionals
100

Hypertext Markup Language

What is HTML

100

Cascading Style Sheets

What is CSS?

100

+ / * -

What are arithmetic operators?

100

A repeated block of code

What is a loop?

100

if/else if/else

What are the keywords of a conditional?

200

<>

What are symbols for a HTML tag?

200

CSS is responsible for this.

What is style?

200

> !== === < >= <=

What are comparison operators?

200

i++

What is a loop update?

200

else

What is the default for conditional statements?

300

Structure & Content

What is HTML responsible for?

300

background-color: red;

What is a property?

300

3 + 5

What is 8?

300

A loop that has the start, stop, and update in one line of code.

What is a for loop?

300

Any code that is contained within a pair of curly braces.

What is a code block?

400

The visible content on a HTML page.

What is <body>?

400

The syntax for a _____________ is:

<p class="first"></p>

What is a class?

400

"3" + "5"

What is "35"?

400

A loop that has the start, stop, and update in multiple lines of code.

What is a while loop?

400

True and False

What are Boolean values?