Study

HTML Elements Review

  •   0%
  •  0     0     0

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