CSS Style
HTML
Tags
HTML Style
Images
100

How you end a line of code in the CSS 

What is a semi colon?

100

How to get text to appear on the webpage

What is <body>…</body>

100

How to start a new paragraph and separate text in an HTML document

What is <p>…</p>

100

How to create a break in the text

What is <br>

100

How to upload an image to code.org

What is the "+add image" button?

200

How you tell the computer what you want your CSS command to affect.

What is the selected part {}

(ex.: h1{})

200

How you always start an HTML document.

What is <!DOCTYPE html>

200

The largest header tag

What is <h1>

200

How to create a thematic break in the text

What is <hr>

200

How to add an image to an HTML page

What is <img src="image name">

300

How you change the size of the text in the CSS.

What is font-size: px

300

The second thing you start an HTML page with

What is <html>

300

How you start a list

What is <ul>

300

How to create a footer in an HTML page

What is <footer>…</footer>

300

How to make sure the image has a label pop up if the image isn't working 

What is <img src="image name" alt="label">

400

What CSS stands for.

What is Cascading Style Sheets?

400

The third thing you always start an HTML page with

What is <head>

400

How to make bullets after you start a list

What is <li>

400

How to center text in the HTML page

What is <center>…</center>

400
How to link an image to something

What is <a href="website name"><img src="image name" alt="label"></a>

500

How you centre text on a CSS page.

What is text-align: center;

500

Adds an ampersand on the webpage.

What is &

500

The smallest header tag

What is <h6>

500

How to make a list numbered after you started it

What is <ol>

500

How to change image size in CSS

What is

img{

width: px;

height: px;

}