-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.php
More file actions
27 lines (26 loc) · 844 Bytes
/
header.php
File metadata and controls
27 lines (26 loc) · 844 Bytes
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
<html>
<head>
<title>Hoo's Pizza</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<header id="header">
<a href="index.php" class="image-link">Hoo's Pizza</a>
<nav id="nav">
<ul>
<!--<li>-->
<!--<a href="#" class="icon solid fa-angle-down">Browse</a>
<ul>-->
<li><a href="index.php">Home</a></li>
<li><a href="Order.php">Order a Pizza</a></li>
<li><a href="contact.php">Contact Us</a></li>
<li><a href="OrderStatus.php">Check Order Status</a></li>
<li><a href="SignUp.php" class="button">Sign Up</a></li>
<li><a href="Login.php" class="button">Log in</a></li>
</ul>
</nav>
</header>
</body>
</html>