Skip to content

Commit

Permalink
Merge pull request #370 from Adil-Khan-N/adil2
Browse files Browse the repository at this point in the history
Added Testimonial Section
  • Loading branch information
PriyaGhosal authored Oct 11, 2024
2 parents 56d6eb2 + c26fe8d commit 12dd0f3
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 0 deletions.
12 changes: 12 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1941,3 +1941,15 @@ body{
}
}

.card-banner {
margin-bottom: 15px; /* Space between image and quote */
}

.grid-list {
margin-top: 30px; /* Space between heading and cards */
margin-bottom: 30px; /* Space below cards */
}

.testimonial-content {
margin-bottom: 10px; /* Space between quote and name (optional) */
}
Binary file added assets/images/testimonials/student1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/testimonials/student2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/testimonials/student3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,61 @@ <h5> Starting at $2,000.00 per month.
</div>
</section>

<!--
#Testimonials
-->

<section id="testimonials" class="section testimonials has-bg-image" aria-labelledby="testimonials-label">

<div class="container">
<p class="title-sm text-center section-subtitle" id="testimonials-label">What People Say</p>

<h2 class="headline-md text-center section-title" data-aos="fade-down">
Hear from <span class="span has-after">Our Clients</span>
</h2>

<ul class="grid-list">
<li class="card-container" data-aos="fade-right" data-aos-offset="100" data-aos-easing="ease-in-sine">
<div class="card testimonial-card">
<figure class="card-banner">
<img src="./assets/images/testimonials/student1.jpg" width="100" height="100" loading="lazy" alt="Person giving testimonial" class="img-cover img-circle">
</figure>
<div class="card-content">
<p class="testimonial-content">"The service was exceptional and exceeded all my expectations!"</p>
<h3 class="title-lg card-title">John Doe</h3>
</div>
</div>
</li>
<li class="card-container" data-aos="fade-right" data-aos-offset="200" data-aos-easing="ease-in-sine">
<div class="card testimonial-card">
<figure class="card-banner">
<img src="./assets/images/testimonials/student2.jpg" width="100" height="100" loading="lazy" alt="Person giving testimonial" class="img-cover img-circle">
</figure>
<div class="card-content">
<p class="testimonial-content">"Outstanding service with exceptional attention to detail and professionalism!"</p>
<h3 class="title-lg card-title">Jane Smith</h3>
</div>
</div>
</li>
<li class="card-container" data-aos="fade-right" data-aos-offset="300" data-aos-easing="ease-in-sine">
<div class="card testimonial-card">
<figure class="card-banner">
<img src="./assets/images/testimonials/student3.jpg" width="100" height="100" loading="lazy" alt="Person giving testimonial" class="img-cover img-circle">
</figure>
<div class="card-content">
<p class="testimonial-content">"Amazing experience! I felt heard and valued as a customer. Will definitely return!"</p>
<h3 class="title-lg card-title">Emily Johnson</h3>
</div>
</div>
</li>
</ul>

<a href="./pages/testimonials.html" class="btn btn-primary" data-aos="zoom-in">See All Testimonials</a>
</div>

</section>


</article>
</main>

Expand Down

0 comments on commit 12dd0f3

Please sign in to comment.