- Make sure you have read and setup the required directories and permission as described in FAQ section on Prerequisites for hosting a web page on cse.unl.edu
- Change your working directory to the public_html directory
> cd ~/public_html
- Open a command line session to cse.unl.edu
- Use an editor like vi or pico to create the index.html file - refer to the FAQ pages on editors on cse.unl.edu. Pico being
the simple unix editor to use.
> pico index.html
- Use the editor to insert some HTML into the file, a simple html content is shown below.
<html> <head> <title> This is my first page </title> </head> <body> <h1> My first page</h1> <p> Hello World </p> </body> </html>
- Save the file and return to the command line
- Grant everyone(others) read access to the file you just created
> chmod o+r index.html
- Open a browser and point it to: http://cse.unl.edu/~login/index.html and you should see the file you just created.
Active:
Yes
FAQ Priority:
5.00
FAQ Category:
Web Related