-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustomer.html
125 lines (100 loc) · 3.62 KB
/
customer.html
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html>
<head>
<title>Customer</title>
<link rel="stylesheet" type="text/css" href="navbar.css" />
<link rel="stylesheet" type="text/css" href="footer.css" />
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<link href="http://fonts.googleapis.com/css?family=Cookie" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="footer, address, phone, icons" />
</head>
<style>
.first-screen{
background-image: url('images/customer_home_image.png');
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center;
background-size: cover;
height: 100%;
}
</style>
<body>
<div class="first-screen">
<nav class="menu-container">
<input type="checkbox" aria-label="Toggle menu" />
<span></span>
<span></span>
<span></span>
<a href="customer.html" class="menu-logo">
<img src="images/image-removebg-preview.png" alt="My Awesome Website"/>
</a>
<div class="menu">
<ul>
<li>
<a href="">
Home
</a>
</li>
<li>
<a href="customer_cuisine.html">
Menu
</a>
</li>
<li>
<a href="customer_cart.html">
Cart
</a>
</li>
<li>
<a href="customer_order_history.html">
Orders
</a>
</li>
</ul>
<ul>
<li>
<a href="index.html">
Sign Out
</a>
</li>
</ul>
</div>
</nav>
</div>
<footer class="footer-distributed">
<div class="footer-left">
<h3>Fleur</h3>
<p class="footer-company-name">Fleur Designers © 2022</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker"></i>
<p><a href="https://www.google.com/maps/place/Mumbai"><span>Mumbai </span> India</a></p>
</div>
<div>
<i class="fa fa-bullhorn"></i>
<p><a href="contact.html">Contact Us</a></p>
</div>
<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:">[email protected]
</a></p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About the company</span>
Fleur Design is a company founded by some students of MPSTME NMIMS Mumbai as a Web Programming project.
</p>
<div class="footer-icons">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-github"></i></a>
</div>
</div>
</footer>
</body>
</html>