You can publish webpages both on the public internet and on the department-only intranet.
http://math.arizona.edu/~youraccountname/
http://intranet.math.arizona.edu/~youraccountname/
You can use various GUI tools to create/edit HTML pages. Information about certain such tools appears below. (If you need information about a different tool, please contact us.)
cd chmod go+x-rw . mkdir pub_http_internet mkdir pub_http_intranet chmod go+x-rw pub_http_internet chmod go+x-rw pub_http_intranetNote: the chmod commands above will also prevent other users on our system from perusing your home directory, which is generally a good idea. However, other users can still access files/directories if they already know the name. To further secure your account, you can remove read permission for all files in your home directory:
cd chmod go-rw *You will have to repeat this step each time you add a file to your home directory. (An alternative is to create a subdirectory, e.g., “private”, and put all your personal files in there.)
<html> <body> My first web page. </body> </html>After saving the file, ensure it has public read permission:
chmod go+r index.html