JAVA_PROJECT
JAVA_PROJECT
JAVA PROJECT
.categories {
padding: 50px 0;
text-align: center;
}
.categories h2 {
font-size: 36px;
margin-bottom: 30px;
}
.category-section {
margin-bottom: 50px;
}
.category-section h3 {
font-size: 28px;
margin-bottom: 20px;
}
.category-grid {
display: flex;
justify-content: space-between;
margin: 0 10px;
}
.category-item {
width: 30%; /* Set width to 30% for three items per row */
display: flex;
justify-content: center;
}
.category-item img {
width: 80%; /* Reduce the image size to 80% of its container */
max-width: 150px; /* Set a maximum width for larger displays */
border-radius: 10px;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 24px;
}
.social-icons a:hover {
color: #d4a373;
}
/* Reach Us Section */
.reach-us {
padding: 50px 20px;
background-color: #fff;
text-align: center;
margin: 20px 0;
border-radius: 10px;
}
.reach-us h2 {
margin-bottom: 20px;
}
.reach-us form {
display: flex;
flex-direction: column;
align-items: center;
}
.reach-us input, .reach-us textarea {
width: 80%;
max-width: 400px;
margin: 10px 0;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.reach-us button {
padding: 10px 20px;
background-color: #d4a373;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.reach-us button:hover {
background-color: #b08968;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="${pageContext.request.contextPath}/img/logo.png.jpg"
alt="Zever Jewellery Logo">
</div>
<nav>
<ul>
<li><a href="home.jsp">Home</a></li>
<li><a href="about.jsp">About Us</a></li>
<li><a href="services.jsp">Services</a></li>
<li><a href="contact.jsp">Contact</a></li>
<li><a href="reviews.jsp">Reviews</a></li>
</ul>
</nav>
</header>
<footer>
<p>© 2024 Zever Jewellery. All rights reserved.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</footer>
</body>
</html>
About.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Zever Jewellery</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
background-image: url('img/BG.PNG.jpg'); /* Add your background
image path */
background-size: cover; /* Makes the image cover the whole
background */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent the image from
repeating */
}
header {
background-color: rgba(51, 51, 51, 0.8); /* Slightly
transparent background */
color: white;
padding: 10px 0;
}
.logo img {
max-width: 150px;
margin-left: 20px;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: flex-end;
margin-right: 20px;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
}
nav ul li a:hover {
text-decoration: underline;
}
.about-section {
padding: 50px 20px;
text-align: center;
background-color: rgba(255, 255, 255, 0.9); /* White background
with transparency */
border-radius: 10px;
margin: 20px;
}
.about-section h1 {
font-size: 36px;
margin-bottom: 20px;
}
.about-section p {
font-size: 18px;
margin-bottom: 30px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.about-section h2 {
font-size: 28px;
margin: 20px 0;
}
.cta-button {
padding: 10px 20px;
background-color: #d4a373;
color: white;
text-decoration: none;
font-size: 18px;
border-radius: 5px;
}
.cta-button:hover {
background-color: #b08968;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 24px;
}
.social-icons a:hover {
color: #d4a373;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="${pageContext.request.contextPath}/img/logo.png.jpg"
alt="Zever Jewelry Logo">
</div>
<nav>
<ul>
<li><a href="home.jsp">Home</a></li>
<li><a href="about.jsp">About Us</a></li>
<li><a href="services.jsp">Services</a></li>
<li><a href="contact.jsp">Contact</a></li>
<li><a href="reviews.jsp">Reviews</a></li>
</ul>
</nav>
</header>
<h2>Our Philosophy</h2>
<p>We believe that jewellery should tell a story and reflect the
unique personality of the wearer. Our collections are designed to mark
special occasions and add a touch of sophistication to everyday looks,
blending classic beauty with modern design.</p>
<h2>Craftsmanship</h2>
<p>Every piece of jewellery at Zever is crafted by skilled artisans
who take pride in their work. Our commitment to quality ensures that each
item not only looks stunning but is also made to last. We carefully select
materials to uphold our promise of ethical and sustainable practices.</p>
<h2>Join Us</h2>
<p>Explore our collection and find the perfect piece that resonates
with your style. We invite you to experience the elegance and craftsmanship
of Zever Jewellery.</p>
<a href="home.jsp" class="cta-button">Explore Our Collection</a>
</section>
<footer>
<p>© 2024 Zever Jewellery. All rights reserved.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</footer>
</body>
</html>
Services.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Services - Zever Jewelry</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-image: url('img/BG.PNG.jpg'); /* Add your background
image path */
background-size: cover; /* Make the image cover the whole
background */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent the image from
repeating */
color: #333;
line-height: 1.6;
}
header {
background-color: rgba(51, 51, 51, 0.8); /* Slightly
transparent background */
color: white;
padding: 10px 0;
}
.logo img {
max-width: 150px;
margin-left: 20px;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: flex-end;
margin-right: 20px;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
}
nav ul li a:hover {
text-decoration: underline;
}
.services-section {
padding: 50px 20px;
text-align: center;
background-color: rgba(255, 255, 255, 0.9); /* White background
with transparency */
border-radius: 10px;
margin: 20px;
}
.services-section h1 {
font-size: 36px;
margin-bottom: 20px;
}
.service {
margin: 20px 0;
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
background-color: #f9f9f9;
}
.service h2 {
font-size: 28px;
margin-bottom: 10px;
}
.service p {
font-size: 18px;
margin: 10px 0;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 24px;
}
.social-icons a:hover {
color: #d4a373;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="${pageContext.request.contextPath}/img/logo.png.jpg"
alt="Zever Jewelry Logo">
</div>
<nav>
<ul>
<li><a href="home.jsp">Home</a></li>
<li><a href="about.jsp">About Us</a></li>
<li><a href="services.jsp">Services</a></li>
<li><a href="contact.jsp">Contact</a></li>
<li><a href="reviews.jsp">Reviews</a></li>
</ul>
</nav>
</header>
<div class="service">
<h2>1. Custom Jewellery Design</h2>
<p>Work with our expert designers to create one-of-a-kind,
bespoke pieces tailored to your vision.</p>
</div>
<div class="service">
<h2>2. Jewellery Repair & Restoration</h2>
<p>We provide professional repair services to restore your
cherished pieces to their original beauty, including resizing, polishing,
and stone replacement.</p>
</div>
<div class="service">
<h2>3. Engraving Services</h2>
<p>Personalize your jewellery with custom engravings, making
each piece uniquely yours.</p>
</div>
<div class="service">
<h2>4. Jewellery Cleaning & Polishing</h2>
<p>Keep your jewellery looking its best with our professional
cleaning and polishing services, ensuring it maintains its shine for years
to come.</p>
</div>
<div class="service">
<h2>5. Valuation & Appraisal</h2>
<p>Our certified experts offer valuation and appraisal services
for insurance purposes, ensuring you know the true worth of your precious
items.</p>
</div>
<div class="service">
<h2>6. Jewellery Resizing</h2>
<p>We provide resizing services to ensure that your rings,
bracelets, or necklaces fit perfectly.</p>
</div>
<div class="service">
<h2>7. Gift Wrapping & Packaging</h2>
<p>For that special touch, we offer elegant gift-wrapping
services, perfect for presenting your purchases in style.</p>
</div>
</section>
<footer>
<p>© 2024 Zever Jewellery. All rights reserved.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</footer>
</body>
</html>
Contact.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Zever Jewelry</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
}
.logo img {
max-width: 150px;
margin-left: 20px;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: flex-end;
margin-right: 20px;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
}
nav ul li a:hover {
text-decoration: underline;
}
.contact-section {
padding: 50px 20px;
text-align: center;
background-color: #fff;
border-radius: 10px;
margin: 20px;
}
.contact-section h1 {
font-size: 36px;
margin-bottom: 20px;
}
.contact-section p {
font-size: 18px;
margin-bottom: 30px;
}
.contact-form {
max-width: 600px;
margin: 0 auto;
text-align: left;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
.contact-form button {
padding: 10px 20px;
background-color: #d4a373;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.contact-form button:hover {
background-color: #b08968;
}
.map {
margin: 20px 0;
border: 0;
width: 100%;
height: 400px;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 24px;
}
.social-icons a:hover {
color: #d4a373;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="logo.png.jpg" alt="Zever Jewelry Logo">
</div>
<nav>
<ul>
<li><a href="home.jsp">Home</a></li>
<li><a href="about.jsp">About Us</a></li>
<li><a href="services.jsp">Services</a></li>
<li><a href="contact.jsp">Contact</a></li>
<li><a href="reviews.jsp">Reviews</a></li>
</ul>
</nav>
</header>
<div class="contact-form">
<form action="submit_form.jsp" method="post">
<input type="text" name="name" placeholder="Your Name"
required>
<input type="email" name="email" placeholder="Your Email"
required>
<input type="tel" name="phone" placeholder="Your Phone
Number" required>
<textarea name="message" placeholder="Your Message"
rows="5" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d1853497.03626878
84!2d77.83289005979813!3d29.91521904071936!2m3!1f0!2f0!3f0!3m2!1i1024!2i768
!4f13.1!3m3!1m2!1s0x3908a8c07db0d237%3A0xcad2fa64e4ae21e9!2sOpposite%20Goel
%20Sweet%20Shop%2C%20Arya%20Nagar%2C%20Jwalapur%2C%20Haridwar%2C%20Uttarakh
and%20124901!5e0!3m2!1sen!2sin!4v1697382948985!5m2!1sen!2sin"
allowfullscreen=""
loading="lazy">
</iframe>
</section>
<footer>
<p>© 2024 Zever Jewellery. All rights reserved.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</footer>
</body>
</html>
Reviews.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reviews - Zever Jewellery</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
header {
background-color: #333;
color: white;
padding: 10px 0;
}
.logo img {
max-width: 150px;
margin-left: 20px;
}
nav ul {
list-style-type: none;
display: flex;
justify-content: flex-end;
margin-right: 20px;
}
nav ul li {
margin-left: 20px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 18px;
}
nav ul li a:hover {
text-decoration: underline;
}
.reviews-section {
padding: 50px 20px;
text-align: center;
background-color: #fff;
border-radius: 10px;
margin: 20px;
}
.reviews-section h1 {
font-size: 36px;
margin-bottom: 20px;
}
.reviews-list {
max-width: 800px;
margin: 0 auto;
text-align: left;
margin-bottom: 30px;
}
.review {
border: 1px solid #ddd;
padding: 15px;
margin: 10px 0;
border-radius: 5px;
background-color: #f9f9f9;
}
.review h3 {
margin-bottom: 10px;
}
.review p {
margin-bottom: 5px;
}
.review span {
font-size: 14px;
color: #666;
}
.review-form {
max-width: 600px;
margin: 0 auto;
text-align: left;
}
.review-form input,
.review-form textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
.review-form button {
padding: 10px 20px;
background-color: #d4a373;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.review-form button:hover {
background-color: #b08968;
}
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
color: white;
margin: 0 10px;
text-decoration: none;
font-size: 24px;
}
.social-icons a:hover {
color: #d4a373;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="${pageContext.request.contextPath}/img/logo.png.jpg"
alt="Zever Jewelry Logo">
</div>
<nav>
<ul>
<li><a href="home.jsp">Home</a></li>
<li><a href="about.jsp">About Us</a></li>
<li><a href="services.jsp">Services</a></li>
<li><a href="contact.jsp">Contact</a></li>
<li><a href="reviews.jsp">Reviews</a></li>
</ul>
</nav>
</header>
<div class="reviews-list">
<!-- Sample Review -->
<div class="review">
<h3>KRISHNAM LAHOTI</h3>
<p>"Absolutely love my new ring! The craftsmanship is
stunning, and it fits perfectly!"</p>
<span>Rating: ⭐⭐⭐⭐⭐</span>
</div>
<div class="review">
<h3>DIVYANSH MAHESHWARI</h3>
<p>"Zever Jewelry has amazing customer service. They helped
me find the perfect gift for my wife!"</p>
<span>Rating: ⭐⭐⭐⭐⭐</span>
</div>
<div class="review">
<h3>KHUSHI GOYAL</h3>
<p>"I appreciate the ethical sourcing of materials. It's
great to wear something that feels good inside and out!"</p>
<span>Rating: ⭐⭐⭐⭐⭐</span>
</div>
</div>
<footer>
<p>© 2024 Zever Jewellery. All rights reserved.</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</footer>
</body>
</html>