===================== STEP 1 ===================== Setting up a personal homepage on seidata How to create a directory and index.html on seidata for your Homepage Telnet to seidata.com and logon as normal Type the following commands in order mkdir public_html What you have done is; using the mkdir command you created a new directory called public_html. chmod u=rwx,g=x,o=x public_html Then using the chmod command you changed the access permissions for this new directory. cd public_html The change directroy command (cd) moved you into the new directory. touch index.html By touching index.html you created a new empty file. chmod u=rw,g=r,o=r index.html The chmod command again assigned new permissions for access to index.html, which is your empty homepage. ls -l the list command (el es space minus el) now shows your index.html on the screen in the public_html directory with access permissions correct. Your homepage address is: http://www.seidata.com/~userid/ Don't forget to include the tilde (~) in front of your userid. This is neccessary. Also in your public_html there is an underline character between the words. These are musts. ======================== STEP 2 ======================== How to Creat Your Own Home Page Creating Your Own Home Page Go directly to HTML Links Creating an HTML File The first thing to do is to create an HTML file. Use any text editor to create a file called index.html. The suffix of html or on PCs of htm is required, It tells the Web browser (WebSurfer, Netscape, Lynx, Mosaic) that the file is a hypertext file. An HTML document is actually only a text document that contains Tags telling the browser how to display the information. An HTML document is composed of a single element: . . . that is, in turn, composed of head and body elements:
. . . and . . . The only tag we will concern ourselves with is the title tag.one paragraph.
a second paragraph. This is a level-one heading Welcome to my home page. one paragraph. a second paragraph. Headers and Sub-Headers Headers range from H1 to H6 and are coded in pairs:
Result:
Note that there is no ending "" code; the IMG code
stands on its own and simply shows the file or URL that is
specified in the SRC section.
A picture can tell a thousand words. It can also take a thousand
seconds to download. A graphics-intensive home page can slow things
down, depending on your system, or the system
of the person reading your home page.
Large graphics may appeal to you but if you want them let the user
have the option, not inline, make sure you tell them what size the
graphic is so they can choose whether waiting 15 minutes to see a
picture of your vacation to The Grand Canyon is worth waiting for.
Remember that not all users have a graphical browser. Using
graphics can present problems to these people if you do not take
measures. Fortunetly HTML probvides an option for this problem.
The ALT tag within the IMG tag allows a text alternative to the
graphic on a text only browser. You should include this within all
graphics that you include on your page.
HTML:
Result on TEXT ONLY browser: [Madison Home Page]
A Few Other Useful Tags
The following Tags are non-paired. They consist of only the tag
and do not have a closing tag.
This tag is used to end paragraphs, skip lines, or force the formating of the previous lines of text as you want them. Examples This is pagagraph one.
This is Paragraph two. This is paragraph one. This is Paragraph two. This is Topic One
Topic Two
Topic three
The end
This is topic One
Topic Two
Topic three
The end
For the average user the
and the
are going to seem to do about the same thing.
There are differences though.
This is pagagraph one.
This is Paragraph two.
This is paragraph one.
This is Paragraph two.
This is Topic One
Topic Two
Topic three
The end
This is topic One
Topic Two
Topic three
The end