basic css
general html
forms
layout
css3
100

______ is the css property that would set double line spacing in a paragraph.

line-height

100

The html tag that defines the administrative area of a page, for information such as title and styles, is __________. 

head

100

The html tag that creates a standard text box is ___________.

input

100

To set the horizontal location of a position:fixed object you can use _______. (two possible answers)

left

200

A margin setting with only TWO values, that would set 10px for top and bottom and 15px for left and right would be ____________. 

10px 15px

200

The _____ html attribute of the a tag defines where a hyperlink will go.

href

200

Objects that have a _______ setting are not only positioned to the left or right, but allow other objects on the page to "wrap" around them.

float

300

The css property that defines if text has an underline is _______________.

text-decoration

300

The ______ tag defines the items in a drop-down or select menu.

option

300

________ is the css property that triggers animations if a css property of an object is changed.

transition

400

Write the html code that would create an image on the page that displays the file "dog.jpg" set to a class of "smallimage" and has alternate text of "Photo of dog".

<img src="dog.jpg" alt="Photo of dog" class="smallimage">

400

Certain block objects such as h1, p and ul are not allowed to have other block objects inside of them. But the _____ object can contain any object.

div

500

Write a complete style entry for an object IDed as box1 that has a background color of red, text color of blue, has the text aligned to the center, and the box itself is 200 pixels wide and 300 pixels tall.

#box1 {

  width: 200px; height: 300px;

  background-color: red; color: yellow;

  text-align: center;

}

500

Write in the box below the full html tag that would create a small textbox with a name of "birthdate", be formatted with a class of "medium", and contain placeholder text that says "enter date in yyyy-mm-dd format".

<input type="text" name="birthdate" placeholder="enter date in yyyy-mm-dd format" class="medium">

M
e
n
u