Edit Game
HTML & CSS Review
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public




Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






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