Game Preview

HTML & CSS Review

  •  English    16     Public
    Covers the material from the Boys & Girls Club Summer 2021 Partnership
  •   Study   Slideshow
  • Which HTML element makes a large header?
    <h1></h1>
  •  15
  • Which HTML element makes an unordered list?
    <ul></ul>
  •  15
  • Which attribute tells an img element which image to use?
    src
  •  15
  • Which element goes around the entire HTML document?
    <html></html>
  •  10
  • What is the relationship between the <ul> element and an <li> element?
    The <ul> is the parent, and the <li> is the child
  •  15
  • What is the <a> element?
    A hyperlink
  •  15
  • Where will this link go when clicked?
    https://google.com
  •  15
  • What is the closing tag for a <p> element?
    </p>
  •  15
  • What will this CSS do?
    Makes all <h1> headers red
  •  15
  • Which CSS selector will style everything on the page?
    body
  •  15
  • Which CSS property can change the color of the background?
    background
  •  15
  • How could you select this paragraph by its class?
    .cool
  •  15
  • Which HTML element will this CSS style?
    one with an ID of "this"
  •  20
  • How many columns will the #main grid have?
    3
  •  15
  • Which three things are needed to make a border in CSS?
    border: 4px solid red; (thickness, style, and color)
  •  20
  • Which CSS property changes text color?
    color
  •  15