ECN No Name Newsletter: September, 1994

The ECN No Name Newsletter is no longer being published. This is an archived issue.

[previous article] [next article]

Creating Your Personal Home Page

No Name Newlsetter Article -- September 1994

Cathy Curry


Please note: this service will be available on ECN Solaris file servers on September 12, 1994.

Before attempting to create your own home page, you should probably familiarize yourself with the World Wide Web (WWW), MOSAIC, Uniform Resource Locators (URL) and HyperText Markup Language (HTML). You need only a basic knowledge of these topics to create a simple home page.

If your department has a faculty/staff/student directory, you can contact your site specialist and he/she can link your personal home page to the departmental listing. You may want to check the information your department is providing about you and customize your home page accordingly.

To create a personal home page

  1. Your home directory must have world and group search permission. To achieve this task, type chmod og+x ~your-login .
  2. Create a new directory in your home directory called public-web, mkdir public-web . Your public-web must be world and group readable and searchable chmod og+rx public-web .

    If you have multiple home directories, choose the machine to which all of your mail is forwarded. If you do not know to what machine your mail is forwarded, use the finger command. Type finger your-login .

  3. Type cd public-web to change directories into public-web
  4. Using your favorite text editor, create a file called Index.html. In your Index.html file, type in the following:
    	<html>
    	<head>
    	<title>this is my home page</title>
    	</head>
    	<body>
    	<h1>My Home Page</h1>
    	<p>
    	This is where you put in text, pictures, any information
    	you wish to present, using HTML. This information
    	will make up your personal home page.
    	<p>
    	</body>
    	</html>
    	
  5. Save this file and exit your editor. Your Index.html file must be world and group readable chmod og+r Index.html .
  6. Verify everything works by selecting the File/Open URL menu in MOSAIC and entering your home page URL. Your home page URL will be:

    http://.ecn.purdue.edu/~your-login/

    This is the URL that people both on and off campus will use to reference your personal home page.

    This is also the convention to use when you want to open another person's home page. For example, if you want to open Cathy Curry's home page, enter the URL:

    http://harbor.ecn.purdue.edu/~cathyc/

To determine the URL for another person's home page use the finger command again with their login name.

Technical Details

There are several things you should want to be aware of when modifying your home page.