Game Preview

HTML Elements Review

  •  English    14     Public
    This covers these HTML elements: html, body, h1, p, img, a, ul, li
  •   Study   Slideshow
  • Which element creates a hyperlink on a website?
    <a>
  •  15
  • Which element goes around the entire HTML document?
    <html></html>
  •  10
  • Which attribute sets the URL for an <img> element?
    src
  •  20
  • What is the relationship between the <ul> element and an <li> element?
    <ul> is the parent element, <li> is the child
  •  15
  • What text will appear on the website for this link?
    Yahoo
  •  15
  • True or False: It is possible to embed a YouTube video on a website
    True
  •  5
  • True or False: the attribute to set the URL for a link is 'src'
    False - what is it?
  •  5
  • What is the name of the largest HTML header element?
    <h1></h1>
  •  10
  • Which element makes an unordered list in HTML?
    <ul></ul>
  •  15
  • What is the closing tag for a <p> element?
    </p>
  •  10
  • True or False: the <img> element does NOT have a closing tag
    True
  •  15
  • What is wrong with this HTML?
    The <ul> element has no closing tag (missing </ul>)
  •  20
  • What is wrong with this HTML?
    The <a> element has no text content
  •  20
  • What is wrong with this HTML?
    Missing an equals sign after href
  •  20