Game Preview

HTML & CSS Review (BGC)

  •  English    11     Public
    HTML & CSS
  •   Study   Slideshow
  • Which HTML element can add a picture to the page? (hint: it has three letters)
    img
  •  15
  • Which HTML element is the largest header?
    h1
  •  15
  • When creating an image, which attribute is needed to set the URL?
    src
  •  15
  • Which element wraps around the entire HTML document?
    <html></html>
  •  15
  • Which CSS property can change the color of the page?
    background
  •  15
  • Which CSS selector can style everything on an HTML page? (hint: it is also an HTML element)
    body
  •  15
  • How could you style this element based on its class?
    .cool
  •  15
  • How would you create the closing tag for this p element?
    </p>
  •  15
  • What is the h1 element?
    the largest header
  •  15
  • What symbols are needed around an opening tag?
    < and > (angle brackets, less-than/greater-than, alligator, pac-man)
  •  15
  • Which symbol goes between a CSS property and value?
    : (colon)
  •  15