CEN4020: Software Engineering I | up↑ |
These are basic instructions for anyone who has not set up a web page before on ww2.cs.fsu.edu. Many students will already know more than this, and those should feel free to go beyond this if they wish to.
mkdir public_html chmod 755 public_html cd public_html
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>index.html</title> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> </head> <body> ...put your text here... </body> </html>
Note that if you want the character "<" to be seen as normal text is must be written as "<".
For more information on HTML and CSS, including HTML and CSS validators, see http://www.w3.org.
($Id: webpages.html,v 1.1 2010/03/22 08:48:31 baker Exp $) |