-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (129 loc) · 4.58 KB
/
index.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
126
127
128
129
130
131
132
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<link href="src/output.css" rel="stylesheet" />
<style>
.filter {
filter: invert(99%) sepia(95%) saturate(564%)
hue-rotate(313deg) brightness(99%) contrast(90%);
}
* {
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-style: normal;
}
</style>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet" />
</head>
<body>
<!-- BACKGROUND COFFE -->
<div class="relative">
<div class="absolute z-[-40] mt-28 w-[65%] py-16">
<img
src="Images/bg-aboutus.png"
alt="coffe"
class="w-full h-full object-cover filter" />
<div
class="absolute inset-0 bg-[#f6eada] bg-opacity-80 rounded-r-3xl"></div>
</div>
</div>
<!-- CARD FACE -->
<div
class="flex flex-col md:flex-row items-center h-screen -mt-20 overflow-hidden">
<div class="w-full md:w-1/3 ml-20">
<p class="text-4xl font-bold">What they say about us</p>
<div class="mt-5 text-black/50">
<p>We always provide the best service</p>
<p>and always maintain the quality of</p>
<p>coffee</p>
</div>
</div>
<div class="w-full md:w-1/2 flex md:space-x-10 -z-30">
<div class="relative mb-32">
<img
src="Images/testimonial-1.png"
alt=""
class="w-[82%]" />
<div
class="bottom-0 -mt-36 ml-10 left-0 w-[85%] p-4 bg-[#ffcc7d] bg-opacity-90 text-white text-nowrap relative rounded-[10px] border-solid border-[7px] border-[#ffd99e]">
<div class="text-black">
<h2 class="text-lg font-bold mb-2 text-black">Naura</h2>
<p>I really love the cappucino,</p>
<p>the coffe was very smooth.</p>
</div>
</div>
</div>
<div>
<img
src="Images/testimonial-2.png"
alt=""
class="w-[100%]" />
<div
class="bottom-0 -mt-36 ml-10 left-0 w-[95%] p-4 bg-[#ffcc7d] bg-opacity-90 text-white text-nowrap relative rounded-[10px] border-solid border-[7px] border-[#ffd99e]">
<div class="text-black">
<h2 class="text-lg mb-2 font-semibold">John</h2>
<p>this coffe shop is very</p>
<p>convenient.</p>
</div>
</div>
<div class="flex space-x-2 justify-center mt-4 relative">
<div class="w-3 h-3 bg-[#eb994d] rounded-full"></div>
<div class="w-3 h-3 bg-[#f1ebdc] rounded-full"></div>
<div class="w-3 h-3 bg-[#f5e8d3] rounded-full"></div>
</div>
</div>
<div>
<img
src="Images/testimonial-3.png"
alt=""
class="w-[100%]" />
<div
class="bottom-0 -mt-36 ml-10 left-0 w-[95%] p-4 bg-[#ffcc7d] bg-opacity-90 text-white text-nowrap relative rounded-[10px] border-solid border-[7px] border-[#ffd99e]">
<div class="text-black">
<h2 class="text-lg font-bold mb-2 text-black">Azura</h2>
<p>the coffe menu here is</p>
<p>very much.</p>
</div>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<div class="relative mb-10">
<div
class="absolute inset-0 flex items-center justify-center flex-col">
<p class="text-white text-center text-3xl font-bold">
Subscribe to get 50% discount price
</p>
<div class="mt-5 relative -ml-40">
<input
type="text"
placeholder="Email address"
class="w-[150%] mx-auto p-3 font-semibold rounded-full border-gray-300 placeholder:text-[#999997] placeholder:translate-x-2" />
<div
class="absolute inset-y-0 right-0 flex items-center -mr-40">
<div
class="bg-[#2b200b] rounded-full text-nowrap text-white font-medium p-2.5 px-5">
Order Now
</div>
</div>
</div>
</div>
<img
src="Images/bg-newsletter.png"
alt=""
class="w-[75%] mx-auto rounded" />
</div>
</body>
</html>