Skip to content

Commit

Permalink
Merge pull request #1494 from dhruv8433/membership-page
Browse files Browse the repository at this point in the history
Membership page
  • Loading branch information
khushi-joshi-05 authored Aug 1, 2024
2 parents 9278546 + 12e8ffc commit f69a842
Show file tree
Hide file tree
Showing 4 changed files with 618 additions and 10 deletions.
114 changes: 114 additions & 0 deletions Css-files/membership.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@

.membership-hero {
background: url("https://i.pinimg.com/564x/ee/c0/81/eec08163bea146100c94827abc90f226.jpg") no-repeat center center/cover;
color: white;
text-align: center;
padding: 100px 20px;
}

.membership-hero-content {
max-width: 700px;
margin: auto;
}

.membership-hero h2 {
font-size: 3rem;
margin-bottom: 20px;
}

.membership-hero p {
font-size: 1.2rem;
margin-bottom: 30px;
}

.cta-button {
background-color: #ff6f61;
color: white;
padding: 15px 30px;
font-size: 1rem;
border: none;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}

.cta-button:hover {
background-color: #ff4f41;
}

.membership-benefits {
text-align: center;
padding: 50px 20px;
}

.membership-benefits h2 {
font-size: 2.5rem;
margin-bottom: 30px;
}

.benefits-cards {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.benefits-card {
background-color: white;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
max-width: 300px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}

.benefits-card:hover {
transform: translateY(-10px);
}

.benefits-icon {
font-size: 3rem;
color: #ff6f61;
margin-bottom: 10px;
}

.membership-testimonials {
background-color: #f9f9f9;
padding: 50px 20px;
text-align: center;
}

.membership-testimonials h2 {
font-size: 2.5rem;
margin-bottom: 30px;
}

.testimonial {
max-width: 600px;
margin: auto;
margin-block: 10px;
padding: 20px;
background-color: white;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial img {
border-radius: 50%;
width: 100px;
height: 100px;
object-fit: cover;
margin-bottom: 20px;
}

.testimonial p {
font-size: 1rem;
margin-bottom: 10px;
}

.testimonial h3 {
font-size: 1.2rem;
color: #ff6f61;
}
2 changes: 1 addition & 1 deletion Html-files/menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ <h5 class="mb-3 text-center">Exclusive Offers</h5>
<a class="nav-link" href="#">Special Event Packages</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Membership Benefits</a>
<a class="nav-link" href="/Html-files/offers/membership-benifits.html">Membership Benefits</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Early Access to New Recipes</a>
Expand Down
Loading

0 comments on commit f69a842

Please sign in to comment.