17 lines
966 B
PHP
17 lines
966 B
PHP
<?php # Script 3.4 - index.php
|
|
$page_title = 'Welcome to this Site!';
|
|
include ('./includes/header.html');
|
|
?>
|
|
<h1 id="mainhead">Big Header</h1>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<h2>Subheader</h2>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<p>This is where you'll put the main page content. This content will differ for each page.</p>
|
|
<?php
|
|
include ('./includes/footer.html');
|
|
?>
|