Name:
CSE 322, Fall 2018: Quiz 1

All questions pertain to HTML unless otherwise stated.

1. A user-interactive, user-friendly HTTP client is more commonly known as:
A web browser.

2. What does the abbreviation HTML expand to?
HyperText Markup Language

3. What are the three necessary syntactic components of a non-empty element?
Start tag, Content, and End tag; or Opening tag, Content, and Closing tag.

4. What is the default textual effect of the <i> element?
Italic

5. What is the default textual effect of the <b> element?
Bold

6. What is the default textual effect of the <s> element?
Strikethrough

7. Name one of the available heading elements.
h1 or h2 or h3 or h4 or h5 or h6

8. Which of the following is an inline element?
  • A) The <p> element
  • B) The <s> element
  • C) The <title> element
  • D) The <head> element
9. Which of the following is a block-level element?
  • A) The <p> element
  • B) The <s> element
  • C) The <title> element
  • D) The <head> element
10. Which of the following elements should be inside the <head> element?
  • A) The <a> element
  • B) The <hr> element
  • C) The <body> element
  • D) The <title> element