Create a Simple Index Page
The index page need be nothing fancy, just a simple organizational tool; for example, create and upload the page using following format. Customize the links so that they do open to your pages:
Code:
<html>
<head>
<title>Index</title>
<style type="text/css">
li{
list-style-type: none;
}
a{
text-decoration: none;
}
td{
padding: 10px;
}
</style>
</head>
<center>
<body>
<h2>Contents</h2>
<table>
<ul>
<tr>
<td><li><a href="hello.html">My Hello World
Page</a></li></td>
</tr>
<tr>
<td><li><a href="image.html">My Image
Page</a></li></td>
</tr>
<tr>
<td><li><a href="personal.html">My Personal
Page</a></li></td>
</tr>
<tr>
<td><li><a href="project.html">My Big Project
Return Your Books</a></li></td>
</tr>
</ul>
</table>
</body>
</center>
</html>
Output:
Get Answers For Free
Most questions answered within 1 hours.