begin index.html -- CUT HERE #------------------------------------------------------------------------------- # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # NOTE: REMOVE ALL LINES STARTING WITH '#' -- THEY ARE FOR YOUR USE ONLY!!! # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! <Head> <Title>John Doe's Home Page</Title> # ^^^^^^^^ # Put your name here -- this is the title of your home page used for # navigation (you might want to call it something else) </Head> <Body> <H1>John Doe</H1> # ^^^^^^^^ # Put your name here -- the <H1> tag specifies a level 1 heading (big, bold # text); the </H1> tag indicates the end of the heading text <HR> # The <HR> tag is a "horizontal rule" -- a separating line used to group # information more clearly <H2>Stuff that I want on my Home Page</H2> # A level 2 heading -- not quite as big as level 1. There are 6 levels # of headings. # The following text is not contained withing heading tags, so it will # appear smaller than the header text. Here's where you can find me on campus:<BR> # the <BR> tag forces a line breaks (note that a Web browser will ignore any # whitespace you put in your text and try to run all the text together # unless you specify line breaks) Room 144, MacNider Hall<BR> (919) 966-5717<P> # the <P> tag indicates a paragraph break (usually two linefeeds) Here's where you can find me at home:<BR> 342 Rosemary Street<BR> Chapel Hill, NC 27514<BR> (919) 967-1234<BR> <HR> <H2>Links to other information</H2> # here we will provide a list of hypertext links to other information # which can be provided by you or provided by another WWW site <MENU> # This tag indicates the beginning of a list of items (other tags you can # use are <UL>, <OL>, <DIR>, and <DL>) <LI> # This tag indicates the beginning of a list item <A HREF="localInfo.html">nameOfLocalInfo</A> # This line indicates a link to a local file called # "~yourlogin/public_html/localInfo.html" </LI> <LI> <A HREF="http://web.server.internet.address/info.html">nameOfInfo</A> # This line indicates a link to a remote file called "info.html" on a # machine named "web.server.internet.address" </LI> </MENU> <HR> <A HREF="http://www.bme.unc.edu/cgi-bin/finger.pl?yourlogin">finger</A> # ^^^^^^^^^ # Put your login name here. This cryptic line allows someone at another # site to execute a finger script here in the BME dept at UNC <A HREF="http://www.cs.unc.edu/cgi-bin/finger?yourlogin">other finger</A> # ^^^^^^^^^ # In the UNC Comp Sci department, this calls the finger program. # Play around and see which form works for you. <HR> Last Revised: January 24, 1995 </Body> # The bulk of this example home page comes from Jason Priebe, # priebe@bme.unc.edu # This file called "index.html" should be in the directory called # "public_html", and the permissions should allow global read # access. For Web files, use something like # chmod 644 *.html # and for Web directories (including "public_html" and ".") # chmod 755 . public_html end index.html -- CUT HERE