Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Testimonial Section #370

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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