The Firefox Index Page

 

The Home Page.  We are going to quickly create the index.php that will act as our corporate home page.

The following file needs to copied into the firefox folder.

 

<?php
include("includes/header.php");
?>
<html>
<head>
<title>The Firefox Home Page</title>
</head>
</html>

 

All this PHP does is includes the header.php we created previously.

If you have all of your files and images in the correct locations you should be able to go to

http://yourURL/firefox/index.php

and see the following.

 

 

The link for my example homepage is at

http://gesaighu.net/firefox/index.php

The links don't yet connect to anything.  That is what we will start to work on in subsequent webpages.