-
Notifications
You must be signed in to change notification settings - Fork 0
/
head_2.php
26 lines (21 loc) · 1.2 KB
/
head_2.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> \n";
echo "<html xmlns=\"http://www.w3.org/1999/xhtml\"> \n";
echo "<head> \n";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /> \n";
echo "<meta content=\"Aarons Website\" content=\"About Me\" /> \n";
echo "<title>$title</title> \n";
echo "<meta name=\"description\" content=\"A website about me, from personal profile, course information to how I made the website\"/> \n";
echo "<meta name=\"keywords\" content=\"Aaron, Thompson, Aaron Thopmpson, Personal profile, About my course, How I made the website\"/> \n";
echo "<meta name=\"author\" content=\"Aaron Thompson\"/> \n";
echo "<link title=\"Custom: Default\" href=\"default_2.css\" rel=\"stylesheet\" type=\"text/css\" /> \n";
echo "<link href=\"IndexImg/favicon.ico\" rel=\"shortcut icon\" type=\"image/x-icon\" /> \n";
echo "</head> \n";
echo "<body> \n";
echo " \n";
echo "<div id=\"wrapper\"> \n";
echo "<div id=\"banner\"> \n";
echo "<img src=\"IndexImg/$banner.jpg\" alt=\"Aaron Thompson's Website\" width=\"970\" height=\"200\" /> \n";
echo "</div> \n";
echo "<div id=\"content\"> \n";
?>