Study

HTML & CSS Review

  •   0%
  •  0     0     0

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