-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestimonials.html
More file actions
160 lines (140 loc) · 4.72 KB
/
testimonials.html
File metadata and controls
160 lines (140 loc) · 4.72 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Easy Park</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<style>
html{
scroll-behavior: smooth ;
}
</style>
<title>Testimonials</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
#testimonials {
background: #f9f9f9;
padding: 60px 20px;
text-align: center;
}
#testimonials h2 {
font-size: 36px;
color: #333;
margin-bottom: 10px;
}
#testimonials p {
font-size: 18px;
color: #555;
margin-bottom: 40px;
}
.testimonial-container {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.testimonial-card {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
max-width: 350px;
transition: transform 0.3s ease;
}
.testimonial-card:hover {
transform: translateY(-5px);
}
.testimonial-card img {
width: 60px;
border-radius: 50%;
margin-bottom: 15px;
}
.testimonial-card h3 {
color: #d32f2f;
margin-bottom: 10px;
}
.testimonial-card p {
font-style: italic;
color: #555;
}
.testimonial-card ul {
text-align: left;
margin-top: 20px;
padding-left: 20px;
}
.testimonial-card li {
margin-bottom: 8px;
color: #333;
}
@media (max-width: 768px) {
.testimonial-card {
max-width: 90%;
}
}
</style>
</head>
<body>
<header class="relative h-screen bg-cover bg-center" style="background-image: url('img/main.jpg')">
<div class="bg-black bg-opacity-60 h-full flex flex-col justify-between">
<nav class="flex justify-between items-center p-6 text-white">
<h1 class="text-2xl font-bold">EASYY <span class="text-red-500">PARK</span></h1>
<ul class="flex space-x-6">
<li> <a href="index.html">Home</a></li>
<li> <a href="bookings.html">My Booking</a></li>
<li class="text-red-500 border-b-2 border-red-500"> <a href="testimonials.html">Testimonials</a></li>
<li> <a href="about.html">About us</a></li>
</ul>
<button onclick="window.location.href='contactus.html'" class="bg-red-500 px-4 py-2 rounded-full text-white">
Contact us
</button>
</nav>
<!-- Testimonials Section -->
<section id="testimonials">
<div>
<h2>What Our Clients Say</h2>
<p>Real feedback from businesses and users who have benefited from our Smart Parking Management System.</p>
<div class="testimonial-container">
<!-- Testimonial 1 -->
<div class="testimonial-card">
<img src="https://cdn-icons-png.flaticon.com/512/3135/3135715.png" alt="City Mall Manager">
<h3>City Mall Manager</h3>
<p>"We implemented the Smart Parking Management System across all branches. With real-time availability and automated ticketing, our parking efficiency has dramatically improved."</p>
<ul>
<li>✓ Real-time spot tracking</li>
<li>✓ Automated bookings and check-ins</li>
<li>✓ Digital payments integration</li>
</ul>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-card">
<img src="https://cdn-icons-png.flaticon.com/512/194/194938.png" alt="TechPark Admin">
<h3>TechPark Admin</h3>
<p>"The system’s intelligent analytics let us monitor peak hours and plan capacity effectively. It's become essential for our operations."</p>
<ul>
<li>✓ Smart dashboard for analytics</li>
<li>✓ Custom alerts and reports</li>
<li>✓ Admin controls for multi-location setups</li>
</ul>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-card">
<img src="https://cdn-icons-png.flaticon.com/512/219/219983.png" alt="Residential Society Head">
<h3>Residential Society Head</h3>
<p>"Residents appreciate the ease of reserving parking spots from their phones. It's streamlined our security and made parking stress-free."</p>
<ul>
<li>✓ Mobile-first user experience</li>
<li>✓ Seamless guest parking options</li>
<li>✓ Secure verification for access control</li>
</ul>
</div>
</div>
</div>
</section>
</body>
</html>