lets say i have 3 pages
index.html
page1.html
page2.html
here is an example of how i would link to pages 1 and 2 from index.html
PHP Code:
<html>
<head>
<title>My Test Page</title>
</head>
<body bgcolor=#ffffff>
<a href="page1.html">Page 1</a>
<br />
<a href="page2.html">Page 2</a>
</body>
</html>