To Projects

IT 130 -- Project 1
Create a Webpage

  1. Create and upload an HTML file.
     
    1. In PSPad, create a file named proj1.htm. Type in the source code from the example Ex2 (cut and paste is cheating): Ex2 Source Code.
       
    2. IMPORTANT: Modify the source code so that the page contains information about you, not about Steve. Also, replace all the <strong> and <em> tags by span tags with inline styles to change the beginning of each line to bold and italic.
       
      Specifically, replace
      <p> <strong><em>
      Favorite Color:
      </strong></em> Blue </p>
      by
      <p> <span style=font-weight:bold; font-style:italic>
      Favorite Color:
      </span> Blue </p>

       
    3. Add your name, project name, and submission date at the top of the page.
       
    4. Save the file with the name proj1.htm.
       
    5. Use SSH Secure File Transfer Client to create a directory named public_html in your home folder in your students account.
       
    6. Use SSH Secure File Transfer Client to upload the file proj1.htm to the folder public_html in the home directory of your students.depaul.edu account.
       
    7. Make sure that the permissions of proj1.htm are read and write for owner, read for group, and read for other.
       
    8. Make sure that the permissions of the directory public_html are read, write, and execute for owner, read and execute for group, and read and execute for other.

  2. Your homepage should now be visible over the web at this URL:
    http://students.depaul.edu/~ssmith/proj1.htm (replace jsmith with your username).
     
  3. Submit the link as a comment in COLASM.

    IMPORTANT:   Submit a link to the uploaded webpage, do not simply submit the webpage directly.
     

  4. Read these Guidelines for Submitting HCI 201 Homework before submitting Proj1.