-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
51 lines (46 loc) · 1.13 KB
/
header.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Personal Pi in the Sky</title>
<link rel="shortcut icon" href="berryicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<div id="header">
<h1>
<a href="index.php"><img src="light_logo.png"/></a>
</h1>
</div>
<div id="page_nav">
<a href="index.php">
<button class="floatLeft" id="navbarbutton">
Home
</button>
</a>
<a href="viewdata.php">
<button class="floatLeft" id="navbarbutton">
View Data
</button>
</a>
<a href="setup.php">
<button class="floatLeft" id="navbarbutton">
Set-up
</button>
</a>
<a href="alias.php">
<button class="floatLeft" id="navbarbutton">
View Favorite
</button>
</a>
<a href="aboutus.php">
<button class="floatRight" id="navbarbutton">
About
</button>
</a>
<a href="contactus.php">
<button class="floatRight" id="navbarbutton">
Contact Us
</button>
</a>
</div>