Skip to content
Open
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
Binary file added foundersimages/Tanya.png
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 foundersimages/ananya.png
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 foundersimages/pritha.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 24 additions & 23 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<li><a href="#about">About</a></li>
<li><a href="#food">Category</a></li>
<li><a href="#food-menu">Menu</a></li>
<li><a href="#testimonials">Testimonial</a></li>
<li><a href="#Founders">Founders</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<h1 class="logo">RS</h1>
Expand Down Expand Up @@ -193,14 +193,14 @@ <h2 class="food-titile">German</h2>
</div>
</div>
</section>
<section id="testimonials">
<h2 class="testimonial-title">What Our Customers Say</h2>
<div class="testimonial-container container">
<div class="testimonial-box">
<div class="customer-detail">
<div class="customer-photo">
<img src="https://i.postimg.cc/5Nrw360Y/male-photo1.jpg" alt="" />
<p class="customer-name">Ross Lee</p>
<section id="Founders">
<h2 class="Founders-title">Founders</h2>
<div class="Founder-container container">
<div class="Founder-box">
<div class="Founder-detail">
<div class="Founder-photo">
<img src="foundersimages\ananya.png" alt="" />
<p class="Name">Ananya Gupta</p>
</div>
</div>
<div class="star-rating">
Expand All @@ -210,20 +210,20 @@ <h2 class="testimonial-title">What Our Customers Say</h2>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
<p class="testimonial-text">
<p class="Founder-text">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Impedit
voluptas cupiditate aspernatur odit doloribus non.
</p>

</div>
<div class="testimonial-box">
<div class="customer-detail">
<div class="customer-photo">
<div class="Founder-box">
<div class="Founder-detail">
<div class="Founder-photo">
<img
src="https://i.postimg.cc/sxd2xCD2/female-photo1.jpg"
src="foundersimages\Tanya.png"
alt=""
/>
<p class="customer-name">Amelia Watson</p>
<p class="Name">Tanya Bhardwaj</p>
</div>
</div>
<div class="star-rating">
Expand All @@ -233,17 +233,18 @@ <h2 class="testimonial-title">What Our Customers Say</h2>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
<p class="testimonial-text">
<p class="Founder-text">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Impedit
voluptas cupiditate aspernatur odit doloribus non.
voluptas cupiditate aspernatur odit doloribus non

</p>

</div>
<div class="testimonial-box">
<div class="customer-detail">
<div class="customer-photo">
<img src="https://i.postimg.cc/fy90qvkV/male-photo3.jpg" alt="" />
<p class="customer-name">Ben Roy</p>
<div class="Founder-box">
<div class="Founder-detail">
<div class="Founder-photo">
<img src="foundersimages\pritha.png" alt="" />
<p class="Name">Pritha Tiwari</p>
</div>
</div>
<div class="star-rating">
Expand All @@ -253,7 +254,7 @@ <h2 class="testimonial-title">What Our Customers Say</h2>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
</div>
<p class="testimonial-text">
<p class="Founder-text">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Impedit
voluptas cupiditate aspernatur odit doloribus non.
</p>
Expand Down
18 changes: 9 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -329,43 +329,43 @@ body {

/* ........./ Testimonial /.......... */

#testimonials {
#Founders {
padding: 5rem 0;
background: rgba(243, 243, 243);
}

.testimonial-title {
.Founders-title {
text-align: center;
font-size: 2.8rem;
font-weight: 400;
color: #555;
}

.testimonial-container {
.Founder-container {
display: flex;
justify-content: space-between;
font-size: 1.4rem;
padding: 1rem;
}

.testimonial-box .checked {
.Founder-box .checked {
color: #ff9529;
}

.testimonial-box .testimonial-text {
.Founder-box .Founder-text {
margin: 1rem 0;
color: #444;
}

.testimonial-box {
.Founder-box {
text-align: center;
padding: 1rem;
}

.customer-photo img {
.Founder-photo img {
display: block;
width: 150px;
height: 150px;
width: 200px;
height: 230px;
object-fit: cover;
object-position: center;
border-radius: 50%;
Expand Down