HTML Study Guide, Test 3

Chapters covered:

- The mobile design section from Chapter 7
- Chapters 8, 9, 10
- Search Engine Optimization presentation

Study the following Test #3:

A few examples of questions are:

  1. Explain each part of the following media query:
    @media only screen and (max-width: 1024px)
  2. Explain the difference between pseudo elements and pseudo classes.
  3. How is the text contained within a <th> element displayed in a browser?  That is, what are the two formatting features that the <th> displays?
  4. What is the purpose of using a table on a webpage?
  5. Describe two of the coding techniques that increase the accessibility of an HTML table.
  6. Why is price not the most important consideration in choosing a web host? Also, list 3 of the other factors to be considered. Your answer must be based on the checklist from the textbook and/or those covered on your homework assignment.  
  7. From Chapter 10, list and briefly describe three of the roles needed on a large-scale web project. Be specific with the names of the roles as well as your description.
  8. Make a convincing argument for using a wireframe in planning a website.
  9. Describe the Website Development Cycle.
  10. What are meta keywords? What is the syntax for writing it?
  11. Where are favicons placed on a webpage.
  12. What is Search Engine Optimization
  13. Describe three of the ways to improve page rankings for SEO.
  14. Describe at least two form controls that could be used to allow a visitor to your website to select a color.

A few examples of Multiple Choice questions are:

  1. In CSS, gradients are applied to which property?
    1. background-image
    2. background-color
    3. color
    4. none of the above
  2. Which of the following font units is recommended for mobile display?
    1. pt unit
    2. px unit
    3. em unit
    4. cm unit
  3. You would like to conduct a survey and ask your web page visitors to vote for their favorite search engine. They may only choose one answer. Which of the following form controls is best to use for this purpose?
    1. check box
    2. radio button
    3. text box
    4. scrolling text box
  4. Forms contain various types of__________, such as text boxes and buttons, which accept information from a web page visitor.
    1. hidden elements
    2. labels
    3. form controls
    4. legends
  5. To group a number of form controls visually on the page, use the ____ element.
    1. fieldset
    2. none
    3. grouper
    4. label
  6. Which HTML element can be used in CSS to display a table with a border?
    1. td
    2. tr
    3. table
    4. tableborder
  7. Which HTML tag pair is used to specify table headings?
    1. <td> </td>
    2. <th> </th>
    3. <head> </head>
    4. <tr> </tr>
  8. Which CSS property specifies the background color of a table?
    1. background
    2. bgcolor
    3. background-color
    4. table-color
  9. Which HTML tag would configure a scrolling text box with the name “comments”, 2 rows, and 30 characters?
    1. <textarea name="comments" width="30" rows="2"></textarea>
    2. <input type="textarea" size="30" name="comments" rows="2">
    3. <textarea name="comments" rows="2" cols="30"></textarea>
    4. <input type="comments" rows="2" name="comments" cols="30">