image\overbutt.gifCreating the Ocean page

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.

image\nicon.gif Note