To Lecture Notes

IT 130 -- 1/6/10

 

Review Questions

  1. What does HTML mean?
    Ans: Hypertext Markup Language
     
  2. What does XHTML mean?
    Ans: Extensible Hypertext Markup Language.
     
  3. How do you recognize an HTML tag?
    Ans: It starts with < (left angle bracket) and ends with > (right angle bracket).
     
  4. What is the difference between HTML and XHTML?
    Ans: XHTML is stricter, for example, each page must start with an XHTML validation header, every start tag must have a matching end tag, each page must have a head section and a body section, the head section must have a title.
     
  5. Name some popular Web browsers.
    Ans: Internet Explorer, Netscape, Opera, Mozilla, Firefox, Netscape, Safari (Apple). Mosaic is still available as antique software.
     
  6. What is the file extension of an HTML file?
    Ans: .htm or .html.; .htm is recommended.
     
  7. What does it mean to upload a webpage?
    Ans: It means to copy a file from a local PC to the web server so that it can be viewed by anyone over the internet.
     
  8. What software can you use to upload a webpage?
    Ans: SSH, FTP. A web browser is not used to upload a web page because browsers are read only for web content.
     
  9. What does it mean to download a webpage?
    Ans: It means to copy the page from the server to the local PC.
     
  10. What software can you use to download a webpage?
    Ans: Any web browser, SSH, FTP.
     
  11. I try to create a new HTML file using Windows Explorer, but its associated icon is for a text file. What is wrong?
    Ans: The Windows Explorer must be set to display file extensions. (Invoke Windows Explorer >> Tools >> Folder Options >> View Tab >> Uncheck the box Hide extensions for known file types.)
     
  12. Why is it important to set Microsoft Explorer to display file extensions?
    Ans: Because you will want to know the exact name of the file without trying to guess the file extension from the icon beside the file. It is also easy to make mistakes when changing the name of a file.
     
  13. List the HTML tags that we saw last time.
    Ans: <html>   <head>   <title>   <body>   <p>   <h1>   <strong>   <em>  

 

History of Computing and the Internet

 

Looking at HTML Source Code

 

Project Proj1

 

Project Proj2