HTML
CSS
Attributions
Images
Code!
100

What tag is used to write on a new line?

<p>

100

In order to change the size of the text in CSS, a user must type in this property.

font-size

100

The exclusive legal right to print, publish, perform, film, or record literary, artistic, or musical material, and to authorize others to do the same.

copyright

100

What HAS to go underneath any picture you use?

an attribution (credit for the author)

100

Write the code that would create this list:

1. Red, Orange

2. Yellow, Green

3. Blue, Purple

<ol>

       <li> Red, Orange </li>

       <li> Yellow, Green </li>

       <li> Blue, Purple </li>

</ol>

200

What tag starts a list in HTML?

<ul> or <ol>

200

What symbol goes at the end of every style property?

; semi-colon

200

Others may not use this work for advertising or to make money.

Non-Commercial

200

What website do you use for copyright-free images?

Creative Commons

200

Write the code that would change the background of a page to blue.

body {

    background-color: blue;

}

300

What goes around HTML tags?

< and >

300

What goes around CSS tags

{ and }

300

Users may only use this work as is and may make no changes.

No Derivative Works

300

What is the code for adding an image to a webpage?

<img src="image name" alt="description of image">

300

Write the code that changes all paragraph text color to red and size 14.

p {

      color: red;

      font-size: 14px;

}

400

What is the largest heading tag?

<h1>

400

Under what tag should you put the code for changing the background of a page?

body

400

Users of this work must share any new versions under the exact same license.

Share-Alike

400

What style properties changes the size of images?

width and height

400

Write the code that makes all images have a width and height of 100, AND puts images in the center of the page.

img {

       width: 100px;

       height: 100px;

       float: center;

}

500

All HTML documents start with this

<!DOCTYPE html>

500

In order to add an HTML page to a CSS page, a user must type in this.

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

500

Anyone can use the work, in any way that they want.

Public Domain

500

What style property changes the position of images on the page?

float

500

Write the code that changes the background color of paragraphs to lavender and the font to cursive.

p {

     background-color: lavender;

     font-family: cursive;

}