HTML Tags
HTML Miscellaneous
HTML - We Write
CSS 1
CSS 2
100
What does the img in <img> stand for?
image
100
All of the HTML tags we've learned go inside the _____ tag
  1. body
  2. content
  3. head
1. body
100
Write the HTML to create a heading with the text "Hudson Guild"
<h1>Hudson Guild</h1>

You could also use h2, h3, h4, h5, or h6 instead of h1

100
In the following CSS rule, h1 is an example of a CSS ____________

h1 {
    color: blue;
}
selector
100
What property is responsible for the color of text?
color
200
What does the p in <p> stand for?
paragraph
200
HTML is responsible for the __________ of a website
  1. structure
  2. style
  3. behavior
1. structure
200
Write the HTML to create a paragraph with the text "A paragraph"
<p>A paragraph</p>
200
In the following CSS rule, height is an example of a CSS ____________

img {
    height: 14px;
}
property
200
Name a property I could use to change the size of an image
height or width
300
What does the ol in <ol> stand for?
ordered list
300
Fill in the blank with correct attribute:

<img ______="http://my/img.jpg">

src
300
Write the HTML to create an unordered list with the names of at least 2 members of your team
<ul>

   <li>Alda</li>

    <li>Kevin</li&gt

    <li>Steve</li>

    <li>Thomas</li>

    <li>Zak</li>

</ul>
300
In the following CSS rule, 20px is an example of a CSS ____________

p {
    font-size: 20px;
}
value
300
CSS is responsible for the __________ of a website
  1. structure
  2. style
  3. behavior
2. style
400
What does the li in <li> stand for?
list item
400
What attribute do we use when create links (aka anchor tags)?
href
400
Write the HTML to create an image that displays the photo at http: //bit .ly/dog
<img src="http: //bit .ly/dog">
400
In the following CSS rule, what does px stand for?

p {
    font-size: 20px;
}
pixel
400
What property can we use to make a tag kind of see-through?
  1. clear
  2. opacity
  3. see-through
  4. translucency
2. opacity
500
What does the a in <a> stand for?
anchor
500
src and href are examples of ___________
attributes
500
Write the HTML to create a link with the text Click Me that when clicked goes to http: //www.google .com
<a href="http: //www.google .com">Click Me</a>
500
Write a CSS rule to make all h2 tags have a color of blue

h2 {
    color: blue;
}
500
Write a CSS rule to make all img tags have a height of 100px

img {
    height: 100px;
}
M
e
n
u