Acronyms
Basic HTML
CSS
Elements and Attributes
Debugging
100

What does HTML stand for?

Hypertext Markup Language

100

What is the current version of HTML?

HTML 5

100

How do you change the color of a background?

background-color: (color);

100

What element is typically used for the main title of the website?

The <H1> tag

100

What's missing in this css block?

P{

Color: blue

background-color: Yellow

}

Semicolin after each property

200

What does URL stand for?

Uniform Resource Locator

200

This is where you put your css stylesheets.

The <head> tag

200

What css property changed size of a text?

Font-Size

200

What element do you use for large bodies of text?

The <p> tag

200

What's wrong with the following css?

body{

Backgroundcolor: Orange;

Color: White;

}

Background-Color needs a dash

300

What does CSS stand for?

Cascading Style Sheets

300

The tag used to create a hyperlink?

The <a> tag

300

What properties separates an element from other elements on a webpage?

Margin

300

How many different sized header elements are there in html?

6

300

What's wrong with the following html?

<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed aliquet ante mollis, dapibus neque et, imperdiet felis. <p>

The end tag is missing a slash </p>

400

What does JPEG stand for?

Joint Photographic Experts Group

400

This tag is used to create a horizontal line.

The <hr> tag

400

What is the css selector for all images on a webpage?

Img

400

What attribute is used in an image tag to provide the image address?

SRC

400

What's wrong with the css that should change the text for h1 h2 and paragraph elements?

h1 h2 p{

Color:blue;

Text-shadow: 2px 2px #FF0000;

}

Needs commas between the selectors:

H1, H2, P

500

What does PNG stand for?

Portable Network Graphics

500

The tag used to created a bulleted list.

The <ul> tag and <li> tag

500

What is the css selector for the class of "specialclass"

.specialclass

500

What attribute in the anchor tag is used to provide the address?

HREF

500

What is wrong with the following html?

<a> <img src="image.png"></a>

The anchor tag is missing HREF

<a href="google.com"><img src="image.png></a>

M
e
n
u