Project 8 - Checksheet

Answers for Self-Check Questions for Project 8.

  1. Web servers
  2. Internet Explorer and Mozilla Firefox
  3. http://www.w3schools.com
  4. World Wide Web Consortium
  5. XHTML 1.0
  6. Hyper Text Markup Language
  7. htm or html
  8. Notepad
  9. <html> tells the browser that this is the beginning of an html document
  10. </html> tells the browser that this is the end of an html document
  11. <p> beginning of a new paragraph
  12. </p>
  13. true
  14. <h1> through <h6>
  15. <h3>
  16. blank line
  17. <p>
  18. blank line
  19. <base>, <link>, <meta>, <title>, <style>, and <script>
  20. <title> is the most common although any of the above codes could be listed as the answer
  21. No, only one set of <html></html> tags is valid per document
  22. No, only one set of <head></head> tags is valid per document
  23. No, only one set of <title></title> tags is valid per document
  24. No, only one set of <body></body> tags is valid per document
  25. Yes, you can have an unlimited number of <h1></h1> tags in a document
  26. Yes, you can have an unlimited number of <p></p> tags in a document
  27. At the top of the browser window, in the "title bar."
  28. </head> ends the "head" section of the code.
  29. </body> ends the "body" section of the code.
  30. Headings are often used in documents to break up sections of the text. Headings should always be in the body section of the code. They should be short lines that introduce different parts of your page.

Coding of practice page named: beginnerpage.html

<html>
<head>
<title>Learning About Web Pages</title>
</head>
<body>
<h1>Headings should be short!</h1>
<p>Paragraphs of text will automatically use word wrap to fill the window according to the screen resolution and monitor size of the user's machine.</p>
</body>
</html>

Hosted by www.Geocities.ws

1