Thread: Mulitple Indexs
View Single Post
Old 10-30-2002, 03:44 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,529
sde is on a distinguished road
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
sde is offline   Reply With Quote