-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
73 lines (60 loc) · 1.17 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
include "config.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Important to make website responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Food Website</title>
<!-- Link our CSS file -->
<link rel="stylesheet" href="css/style.css">
<style>
.box-3.float-container {
background: #4ab5d1;
padding: 33px 20px;
border-radius: 10px;
}
.float-text{
position: absolute;
bottom: 0px;
left: 40%;
}
</style>
</head>
<body>
<!-- Navbar Section Starts Here -->
<section class="navbar">
<div class="container">
<div class="logo">
<a href="#" title="Logo">
<img src="images/logo.png" alt="Restaurant Logo" class="img-responsive">
</a>
</div>
<div class="menu text-right">
<ul>
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="categories.php">Categories</a>
</li>
<li>
<a href="foods.php">Foods</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</section>
<!-- Navbar Section Ends Here -->
<!-- fOOD sEARCH Section Starts Here -->
<section class="food-search text-center">
<div class="container">
</div>
</section>
<!-- fOOD sEARCH Section Ends Here -->