HTML Text Tags
Adding Images
CSS Basics
HTML Basics
Web Page Structure
100

What tag is used for body text?

A <p> tag.

100

What does the "src" part of code mean when adding images?

Source.

100

What property can you use to change the color of something in CSS?

A "color:" property.

100

What kind of code do you need to add to create breaks in paragraphs and create more space on your webpage?

A <br> element.

100

What is the name of the page in which all the content for a webpage is found on?

The HTML file.

200

What tags create headings on your webpage?

<h> tags.

200

What kinds of image sources does code.org accept? (Must name at least one)

.jpeg, .jpg, and .png.

200

How would you change the size of text in the CSS?

The "font-size:" property.

200

What kind of code surrounds a clickable link?

<a> tags.

200

What tag starts off every HTML webpage?

<!DOCTYPE html>.


300

Which heading tag is the largest?

The <h1> tag.

300

What part of the image tag codes for a short message to pop up in place of an image when it cannot load?

The "alt" attribute.

300
What property adds space around an element?

A "margin:" property.

300

What code can be used to create a line to split up elements in HTML?

An <hr> element.

300

What tag closes each webpage?

</html>.

400

Which heading tag is the smallest?

The <h6> tag.
400
What code is used to place an image into a webpage?

<img src="IMAGE.jpg" alt="Image description" />.


400

What CSS property allows for the styling of only one element all different from the rest?

A <div> property.

400

What element is used to create a bulleted and numbered list?

The <ol> element.

400

What are the two main parts of every HTML?

The <head> and the <body>.

500

How many different types of heading tags are there?

Six.
500

What is the code used to link images either internally or externally?

<a href="LINK"><img src=IMAGE.png></a>.

500

When wanting to style a specific class in the CSS how do you start off its code?

With a "." (example ".class {}").

500

What element is used to create lists with only indentations and no bullets?

A <dl> element.
500

What code is used to link an HTML to a CSS in order to style it?

<link rel="stylesheet" href="TITLE.css">.


M
e
n
u