The easiest way to create the required "public_html" directory is to use the Home Page Setup Tool.
You will be asked to identify the ACMS server that supports your account. Some students have access to more than one server as shown by the Account Look-up Tool. If in doubt, use the same server that supports your ACMS email.
Web documents are written in a special style called HTML (HyperText Markup Language). Sequences of characters called "markup tags" allow you to adjust the appearance of your page, add links and add images. HTML files can be created with special authoring software or "manually" using an ordinary wordprocessor or text editor. To find information about special authoring software search the Web for "html editor wysiwyg". You can get started now using your favorite word processor or text editor.
Name your first file index.html. The file name index.html has a special property. If you point your web browser to a URL containing only a directory name and no explicit filename, the Web server will look in that directory for a file called "index.html" and present it to the user.
Here's an example of what to put into your index.html file. This bare-bones sample shows the required elements of an HTML page.
<html>
<head>
<TITLE>A Simple HTML Example</TITLE>
</head>
<body>
<H1>HTML is Easy To Learn</H1>
<P>Welcome to the world of HTML.
This is the first paragraph. While short it is
still a paragraph!</P>
<P>And this is the second paragraph.</P>
</body>
</html>
Resources: Guide to HTML. See that guide or any of a number of tutorials available on the Web to learn about HTML. Search for "html tutorial".
Another good way to learn HTML tricks is to look at what others have done. All browsers have a way of viewing the raw HTML code for a document. Find someone else's Web document that does something similar to what you want to do and look at their HTML code.
This is a reminder that all activities on ACMS systems, including setting up personal Web sites, are subject to the ACMS Acceptable Use Policies. It is your responsibility to ensure that you do not violate copyright laws.
There are many ways to do this.
If you need help with any of these transfer methods, feel free to visit a Student Computer Consultant during zebra hours.
To test your Web site start a browser and give it a URL of this form:
http://server/~username/
This will cause the server to look in your public_html directory and display your index.html file if you have one.
For example, for the user jsmith on server acsweb.ucsd.edu the URL would be:
http://acsweb.ucsd.edu/~jsmith/
Examples for other files beneath public_html would be:
http://acsweb.ucsd.edu/~jsmith/sports.htmlhttp://acsweb.ucsd.edu/~jsmith/pictures/me.gif