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

Membership page #1494

Merged
merged 3 commits into from
Aug 1, 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
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 @@ -257,7 +257,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
Loading