-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
23 lines (23 loc) · 731 Bytes
/
header.php
File metadata and controls
23 lines (23 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><?php echo $title; ?></title>
<link href='https://fonts.googleapis.com/css?family=Raleway|Oxygen' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<div id="wrapper">
<header>
<div id="title-block">
<h1 id="title" class="center"><a href="index.php">Josh Thomas</a></h1>
<hr>
<nav class="center">
<ul id="main-nav-list">
<li class="horizontal-li"><a href="index.php">Home</a></li>
<li class="horizontal-li"><a href="contact.php">Contact</a></li>
<li class="horizontal-li"><a href="shop.php">Shop</a></li>
</ul>
</nav>
</div>
</header>