-
Notifications
You must be signed in to change notification settings - Fork 1
/
customer_cuisine.html
106 lines (81 loc) · 3 KB
/
customer_cuisine.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
<!DOCTYPE html>
<html>
<head>
<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">
</head>
<style>
body{
background-color: black;
}
.parent {
position: relative;
top: 0;
left: 0;
height: 100vh;
margin: 0;
padding: 0;
margin-bottom: -27px;
}
.image1 , .image2 , .image3 {
position: relative;
top: 0;
left: 0;
width: 100vw;
max-height: 33vh;
max-width: 100vw;
filter: blur(2px);
filter:opacity(0.5);
}
.image1:hover, .image2:hover, .image3:hover{
filter: blur(0px);
filter:opacity(1);
transition: 0.7s;
}
.image1:not(:hover), .image2:not(:hover), .image3:not(:hover){
transition: 0.7s;
}
</style>
<body>
<div class="parent">
<a href="customer_menu-appetizers.html" ><img class="image1" src="images/cuisine1.png" /></a>
<a href="customer_menu-main.html" ><img class="image3" src="images/cuisine3.png" /></a>
<a href="customer_menu-dessert.html" ><img class="image2" src="images/cuisine2.png" /></a>
</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>