HTML
CSS
Program
Code
Code
100

This special declaration appears at the very top of an HTML document to tell the browser what type of document it is

<!DOCTYPE>

100

What is css

Cascading Style Sheets-a program language used to style an html document

100

A set of clearly defined, logical steps to solve a problem.

An Algorithm

100

This programming concept repeats a section of code multiple times to save work and avoid duplication.

Loops

100

What is the name of the true or false value that conditionals use

Boolean

200

This tag wraps everything you see on a webpage, like headings, paragraphs, and images and define the body of the document

<body>   </body>

200

If you only want to style a single HTML element directly, you would use this type of CSS.

inline style

200

This is a named block of code that does a specific task and can be reused many times.

a Function

200

This is the process of finding and fixing mistakes in your code.

debug

300

this html tag creates the largest heading on a webpage

<h1>

300

his best practice for styling a website uses one separate file to control the design of the whole website.

external style sheet

300

a repetition or cycle through of something is known as 

an iteration

300

These statements allow programs to make decisions and do different things based on if something is true or false.

Conditional Statements

400

This section of an HTML document includes important information like the page title, but it does not show on the main webpage itself.

<head> 

400

In CSS, you use this type of selector (with a . in front) to apply the same style to many different elements.

class selector

400

This type of loop repeats until a condition is no longer true.

while loop

400

This is what we call a named location in memory where we can store information in a program and change it later

a variable

500

What does HTML stand for and what is it

Hypertext Markup Language- used for documents designed to be in a web browser