Category 1
Category 2
Category 3
Category 3
Category 4
100

What is the symbol for an id?

#

100

What is the CSS box model?

A box that wraps around every HTML elements that includes spacing properties.

100

What are the three ways to include CSS in your webpage?

Inline, including styles in the of your doc, linking to an external stylesheet

100

What is the correct html element for the largest heading?

h1

100

A div is used to group block elements so you can format them with CSS (True or False)

True

200

What is the symbol for a class?

.

200

What does HTML stand for?

Hypertext Markup Language

200

How do you make something bold in the html

<strong>

200

This file contains all the styling information: where HTML elements should go, what color they should be, how big they should be, and more.

CSS Cascading StyleSheet

200

What is "alt" for inserted image in HTML page.

Alternative Text. If the image is not available (deleted, moved), this text will be shown.

300

What is the difference between IDs  and Classes 

IDs are unique. Classes can be applied to multiple elements

300

What does CSS stand for?

Cascading Stylesheets

300

What property controls the background color?

background-color

300

Times New Roman is a sans-serif font. 

TRUE or FALSE

 FALSE

300

What does the "li" in <li> stand for?

list item

400

What is the float property do?

Controls the horizontal position of an element

400

Which of the following tag would not be typically found in the header of an HTML document 

<title> <meta> <strong> <style>

<strong>


400

What does the "p" in <p> stand for?

paragraph

400

What is the correct HTML for creating a hyperlink?

<a href="http://www.w3schools.com">W3Schools</a>

400

What property controls the font?

font-family

500

What is the difference between an inline and a block element?

A block element takes up the whole width and has a new line before and after. An inline element only takes up the space required for the content.

500

What does the CSS box model include?

Content, padding, border, margin

500

What should be the first line of your HTML files?

<html>

500

What element would you use to make a numbered list?

<ol>

500

What is the correct HTML for inserting an image?

<img src="image.gif" alt="MyImage">

M
e
n
u