Study Guide 3 Spring 2018

HTML Chapters 8, 9, 10,
and some topics covered during class

Chapters covered:

- Chapters 8, 9, 10
- The mobile design section from Chapter 7
- Other topics that we worked on in class
- There will be NO QUESTIONS about dropdown menus

Study the following Test #3:

A few examples of questions are:

  1. 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.  
  2. What is the purpose of using a table on a webpage?
  3. Describe one coding technique that increases the accessibility of an HTML table.
  4. 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?
  5. Explain the difference between pseudo elements and pseudo classes.
  6. Explain each part of the following media query:
    @media only screen and (max-width: 1024px)
  7. What is the meaning of the @keyframe rule? Also, based on what we covered in class, what are the parts of it?
  8. Where are favicons placed within a webpage?

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">