Project 9 - Checksheet

Answers for Self-Check Questions for Project 9.

  1. If you want to prepare yourself for the next generations of HTML, you should start using lowercase tags. The World Wide Web Consortium (W3C) recommends lowercase tags in their HTML 4 recommendation, and XHTML (the next generation HTML) demands lowercase tags.
  2. Attributes always come in name/value pairs like this: name="value". The name of the attribute is given in the starting tag after the tag name. An equals sign separates the name of the attribute and the value. The value is given in quotes. Example: <body bgcolor="white">
  3. Attributes are always added to the start tag of an HTML element.
  4. left, right, center and justify
  5. <p align="center">Text for the paragraph.</p>
  6. <h2 align="right">Ruthann Whobrey</h2>
  7. The <br> tag is used when you want to end a line, but don't want to start a new paragraph. The <br> tag forces a line break wherever you place it.
  8. Empty tag
  9. Extensible Hypertext Markup Language
  10. January 26, 2000
  11. <strong><em>This text is bold and italic.</em></strong>
  12. <h2>Parkland College</h2>
  13. <h3>Parkland College</h3>
  14. </body>
  15. before
  16. <br />
  17. <hr />
  18. lowercase
  19. quoted
  20. <p align="center">This is my text.</p> (all code must be lowercase)
  21. <h2 align="right">Text for the heading.</h2> (change uppercase R to r and add quote after the value of right)
Hosted by www.Geocities.ws

1