Project 8 - Checksheet
Answers for Self-Check Questions for Project 8.
- Web servers
- Internet Explorer and Mozilla Firefox
- http://www.w3schools.com
- World Wide Web Consortium
- XHTML 1.0
- Hyper Text Markup Language
- htm or html
- Notepad
- <html> tells the browser that this is the beginning of an html document
- </html> tells the browser that this is the end of an html document
- <p> beginning of a new paragraph
- </p>
- true
- <h1> through <h6>
- <h3>
- blank line
- <p>
- blank line
- <base>, <link>, <meta>, <title>, <style>, and <script>
- <title> is the most common although any of the above codes could be listed as the answer
- No, only one set of <html></html> tags is valid per document
- No, only one set of <head></head> tags is valid per document
- No, only one set of <title></title> tags is valid per document
- No, only one set of <body></body> tags is valid per document
- Yes, you can have an unlimited number of <h1></h1> tags in a document
- Yes, you can have an unlimited number of <p></p> tags in a document
- At the top of the browser window, in the "title bar."
- </head> ends the "head" section of the code.
- </body> ends the "body" section of the code.
- 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>