-
Notifications
You must be signed in to change notification settings - Fork 0
/
nav.php
27 lines (25 loc) · 832 Bytes
/
nav.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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style/main_style.css">
<title> Carpool </title>
</head>
<body>
<div class="container">
<nav class="navbar background">
<ul class="nav-list">
<?php include("sidenav.php"); ?>
<div class="logo"><img src="img/img.jpg" alt="logo"></div>
<li><a href="main.php">Home</a></li>
<li><a href="aboutus.php">About Us</a></li>
<li><a href="#benefits">Benefits</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="right-nav">
<button class="btn btn-l"> <a href = "logout.php"> Logout </a></button>
</div>
</nav>
</div>
</body>
</html>