To Lecture Notes

IT 130 -- 9/30/08

 

Review Questions

  1. Which of the following are good names for folders? Ans: "BigCities" contains upper case letters, "big cities" contains a space, big/cities will be interpreted as the file cities inside the file big, bitcities.htm is okay for the name of a webpage but a file extension is not okay for the name of a file. Therefore, big-cities and bigcities are the only acceptable filenames.

  2. What is the HTML symbol for parent folder?

    Ans: ..

  3. Here is the navigation architecture for Sample Website 1.

    0 public_html
        1 appendix
            2 app1.htm
            2 app2.htm
            2 app3.htm
        1 ch1.htm
        1 ch2.htm
        1 ch3.htm
        1 images
            2 cat.jpg
            2 dog.jpg
    
    Write address tags that conform to these four locations of the target file relative to the current file.

  4. Write HTML code to display this table:

    A B
      D

    Ans:

    <table>
    <tr> <td>A</td> <td>B</td> </tr>
    <tr> <td>&nbsp;</td> <td>D</td> </tr>
    </table>

  5. Write down the information architecture for your files on the students.depaul.edu server through Project Proj3. Assume that all of your Proj3 files are in a folder named proj3.

    Ans:

    0 public_html
        1 proj1-smith.htm
        1 proj2-smith.htm
        1 proj3
            2 image-collage.htm
            2 proj3-index.htm
            2 resume.htm
            2 images
                3 earth.jpg
                3 jupiter.jpg
                3 mars.jpg
                3 saturn.gif
    
 

Document-level Styles

 

Practice Problems

 

More About Headers and Paragraphs

 

Lists

 

Project Proj3