public_htmlpublic_html
inside My Documents. Open My
Documents, choose
right-click>New>Folder and name that
directory public_html. This is the directory
that will contain all your HTML files.index.htmlStart>All
Programs>Accessories>NotepadNotepad
<html> <head> <title>My first page</title> </head> <body> <h1>My first page</h1> This is the main page of my presentation. This page is loaded if the following URL is typed in the browser http://astro.armstrong.edu/~yourUserName/ </body> </html>
Save the text in a file called index.html
inside public_html. To do this choose
File>Save As and then for Save
in: choose My Documents and then
double-click on
public_html.
Set File Name: to index.html
and Save as type: to All Files
and then click Save
Start>My Documents and
double-click on public_html. This
folder should contain a file called index of
type HTML file.double-click on that file you will
see your web paged rendered by the browser. However your
page is not on the web yet, for this you will need to follow
the next steps.SSH Secure Shell Client from the
Desktop and then click Quick
Connect and set Host Name: to
astro.armstrong.edu and set User
Name: to your user name and press
Connect. Enter your password in the next dialog
(your initial password is your student id 907...)All authentication tokens updated
successfuly, and you will be logged out of the
account.Quick Connect and then
Connect and type your new password. You will
be presented with and Acceptable Usage message, to which you
will have to agree by pressing Y. Then you will
be prompted for your password again and then logged out of
the account. If everything was successful you should see
Shell changed.SSH Secure Shell Client. You won't
need it anymore.SSH Secure File Transfer Client
from the Desktop. You are presented with two
panels, the left panel shows files on the local machine, the
right panel shows files in your account on the Unix
machine. Quick Connect.double-click on My
Documents, and then drag
public_html over the white part of the right
panel. This will copy the entire public_html
directory to the Unix machine.http://astro.armstrong.edu/~yourUserName/. Your
browser will display your index.html file.SSH Secure File Transfer Client by
right-click on a file or folder and choosing
Properties.
Read and Execute permissions set
for Owner, Group and
Other. The Properties dialog for
a folder that has permissions correctly setup should look
like the following picture 
Read permission set for Owner,
Group and Other. The
Properties dialog for a file that has
permissions correctly setup should look like the following
picture 
We are going to asume that you just started a new lab. All files created on lab machines are deleted during the night, so we are going to delete everything we created on the lab machine. Note that your web presentation is saved on the Unix machine.
My Documents and your Unix accountOpen My Documents and delete
public_html by right-click on it and
then choose Delete.
Switch to SSH Secure File Transfer Client. We
are going to navigate only through the right panel. Make sure
that in your home directory you have only a directory called
public_html. Delete any other files or
directories. double-click on
public_html. Inside public_html you
should have only one file index.html. Delete any
other files or directories. Note that you cannot delete
directories from the Unix machine unless they are empty. So,
to delete a directory you'll have to delete the files inside
it first.
SSH Secure File Transfer Client. Make
sure the left panel shows you the content of My
Documents and the right panel shows you the content of
your home directory /home/yourUserName.
drag public_html from the right panel
to the empty part of left panel.spiderman.html. As usual, all HTML files should
be stored inside public_html. This is the
content of the new file:
<html>
<head>
<title>Spider Man</title>
</head>
<body>
<h1>Spider Man</h1>
<h2>Origin</h2>
<p>Peter Parker was a normal high-school student who excelled
science, but whose accomplishments were often overshadowed by his
innate shyness. His life was changed when a radioactive spider bit
him transferring him the abilities and the proportional strength of
a spider.</p>
<h2>Power and Abilities</h2>
<p>
<em>wall-crawling</em> -
Spider-Man has to power to adhere to almost any surface.<br>
<em>web-slinging</em> - This ability allows Spider Man to swing
from building to building allowing him to get fast where he is
needed.<br>
<em>spider-strength</em> - The proportional power of a spider
allow Spider Man to lift about 10 tons.<br>
</p>
</body>
</html>
Check that the new HTML file is displayed correctly in the
browser.
index.html to spiderman.html.
<a href="spiderman.html">Spider Man</a> at the end of the body of index.html, before </body>.
SSH Secure File Transfer Client to upload
your presentation.http://astro.armstrong.edu/~yourUserName/ in
a browser. Click on the link and make sure
spiderman.html is loaded as well.