HTML 1
HTML 2
CSS 1
CSS 2
Debugging
100

What is the tag for paragraphs?

<p> </p>

100

What is the tag for the smallest heading?

<h6></h6>

100

These two letters are used to measure size in coding.

PX

100

TRUE OR FALSE: CSS code uses "="

False

100

<head>

<p>hello</p>

</head>

<body>

<p>hello</p>

</body>

200

What is the largest heading tag?

<h1> </h6>

200

What is the tag to create a numbered list?

<ol></ol>

200

This CSS code changes the color of the text.

color:___;

200

This CSS code changes the size of the HTML element.

height or width

200

p {

color: brg (100, 200, 50)

}

p {

color: rbg (100, 200, 50)

}

300

What is the tag to create a dotted list?

<ul></ul>

300

What does the L I in this tag <li></li> stand for?

list item

300

This CSS code changes the type of font.

font-family:___;

300

This CSS code changes the color of the background.

background-color:___;

300

Debug the code:

<ol>hi</ol>

<ol>hello</ol>

<ol>hey</ol>

<ol>

<li>hi</li>

<li>hello</li>

<li>hey</li>

</ol>

400

What is the code for images?

<img src="image_filename"  alt="name">

400

What is the code to link a CSS file to an HTML file?

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

400

The CSS code that creates a line over the text is called: ____?

overline

400

This CSS code can be used to underline text.

text-decoration:____;

400

<img scr="filename" alt="name">

<img src="filename" alt="name">

500

What does HTML stand for?

HyperText Markup Language

500

What does CSS stand for?

Cascading Style Sheet

500

This CSS code causes the HTML element to go to the left or right or center.

float: __;

500

This CSS code can turn a square border into a circle.

border-radius:___;

500

<link src=stylesheet href="___">

<link rel=stylesheet href="___">

M
e
n
u