-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
31 lines (29 loc) · 1.03 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
<?php
// including header from the header.php
include("connection.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<title>iHotel</title>
</head>
<body>
<div class = "headerStyle">
<ul>
<li><img src="images/logo1.jpg"></li>
<li><a href="index.php">Home</a></li>
<li><a href="about.php">About</a></li>
<li><a href="bookNow.php">Book Now</a></li>
<li><a href="ratePage.php">Rate</a></li>
<!-- login button -->
<div class = "loginHover">
<li style="float:right"><a class="active" href="customerLogin.php">Login</a></li>
</div>
</ul>
</div>