(1) Go to this site (see graphic and html discription of this page below)
(2) Choose Source from the View menu
Note: Some times the page will endlessly load--you can tell if this happens by the continued movement in the Netscape icon. You cannot view the source. When this happens first, click the Stop icon in the browser before viewing the html.
(3) Drag, select all the text
(4) Copy the HTML text
To Copy <Apple/Command key> <C key> |
PC Compatibles
To Copy <Ctrl key> <C key> |
Text editor: SimpleText To paste
|
PC Compatibles
Text editor: Notepad To Paste
|
(6) View your changes by starting a browser then choosing Open Page from the File menu and open your welcome.htm file
(7) Keep both the editor and the browser open and you can make and changes in the editor then click the browser and clik the reload icon and view your changes
(8) When you are satisfied with your page transfer your file (HTM and
graphics) to the web server with an FTP program
HTML on Jim's Home Page ( To see an annotated version click here)
HTML copied from: http://www.csubak.edu/~jross/
BASIC HTML--Formats for your Home Page
The following HTML (HyperText Markup Language) commands work for most
newer browsers. For most of these commands the format command is
placed before the item to be formatted and the item formatted is followed
with an end of format command (the format command with a slash “/” in front).
For example to bold my name:
<Title> your title </Title>
This is important, it will appear in the window heading, above the
menu bar, of a browser and will be the name saved as a bookmark in browsers.
It will not appear on the page itself.
<Body> file </Body>
Can be used to define a color or graphic background, see Enhancing
your home page, page 7. </Body> goes at the end of your file just before
</html>
<Head>text </Head>
Text that will appear at the top of your page
<strong>text </strong>
Acts pretty much the same as the bold comand
<I>text </I>
Italicizes text
<U>text </U>
Underscores text
<EM>text </EM>
pretty much the same as bold
<BLOCKQUOTE>text </BLOCKQUOTE>
Places text in an indented block format
<BR> forces a return and starts a new line. This format does not have to be repeated with a slash “/”at the end.
<P> Paragraph command, forces a return, a line feed and starts a new line. This format does not have to be repeated with a slash “/”at the end.
<PRE>text </PRE>
Keeps the text as formatted with spaces, the browser will not
automatically wrap at the end of a line. Useful for a format you cannot
quickly duplicate with HTML commands
<HR> Places a horizontal rule, a separator line on your page. This format does not have to be repeated with a slash “/”at the end.
<H1> text </H1>
Defines the heading text level or size for a line or lines, there
are six levels H1 (the largest) to H6 (the smallest)
<! An exclamation mark placed after the left arrow bracket turns
the following into a comment
<LI> an item in a list. This format does not have to be repeated with a slash “/”at the end.
<UL> lines of an unordred list</UL>
<DL> lines of items for a dictionary/glossary</DL>
creates a list formatted as hanging paragraphs--like a dictionary.
Each item has the following in front:
Change the size your graphic will appear by adding:
The XXX are number of pixels. Experiment, I'm noot sure about the size. The final command would look something like this:
Align your graphic left, center or right
You can place the image on the left, center or right using the placement
commend before and after the graphic anchor
Links to a web page
<A HREF= "a home page URL" > a name</A>
Links, “anchors” to another hompage.
Links to a target within a web page
<a HREF="#1.1">locationname</a>
Links to a location "#1" withen an HTML document specified.
Let a web user mail you a message
<A HREF="mailto:jross@csubak.edu">Jim Ross</A><P>
Lets the browser mail a message to you (use your name and e-mail
address-not mine)