lis-458-ol-php/index.php

17 lines
966 B
PHP
Raw Normal View History

2018-02-18 01:30:12 +00:00
<?php # Script 3.4 - index.php
2018-02-18 01:28:11 +00:00
$page_title = 'Welcome to this Site!';
include ('./includes/header.html');
?>
2018-02-18 01:30:12 +00:00
<h1 id="mainhead">Big Header</h1>
2018-02-18 01:28:11 +00:00
<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');
2018-02-18 01:30:12 +00:00
?>