The Ocean page is the second HTML file you must create. This file only displays text and one image. You can create this file in an ASCII text editor. The filename of this HTML file must be index.html.
To create the Ocean page
1. Click Application Starter, Utilities, Text Editor.
2. Create the HTML file.
You can refer to the following HTML file for a reference.
<html>
<head>
<title>The Ocean Page</title>
</head>
<body bgcolor="#000000">
<p align="center"><font color="#FF0000"><strong><big>The Ocean Page</big></strong></font></p>
<p><font size="3" color="#FFFFFF">The following image is the Pacific Ocean.
</font></p>
<p><img src="image2.jpg" width="365" height="211" alt="image2.jpg (10625 bytes)"></p>
</body>
</html>
HTML Explanation
This page simply displays text and images. There are no links or jumps. You will need to save the image2.jpg file in the /var/www/ocean directory. Make sure that the name of this HTML file is index.html. The HTML file and the image file must be placed in the /var/www/ocean/ directory.
Note
If you do not have index.html in the directory, the server will provide a list showing all the files in the directory provided you specify Indexes in the Options directive. For information about the Options directive, see "Using the access configuration file."