0% found this document useful (0 votes)
123 views5 pages

SoulWave: Mindfulness Resources

Uploaded by

2300300130108
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
123 views5 pages

SoulWave: Mindfulness Resources

Uploaded by

2300300130108
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SoulWave</title>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}

header {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}

nav ul {
list-style-type: none;
padding: 0;
}

nav ul li {
display: inline;
margin-right: 20px;
}

nav ul li a {
color: white;
text-decoration: none;
}

footer {
text-align: center;
padding: 20px 0;
background-color: #333;
color: white;
}

h1, h2, h3 {
color: #333;
}

.hero {
background-color: #d0f0c0;
padding: 50px 0;
text-align: center;
}

.hero h1 {
font-size: 3em;
}

.hero p {
font-size: 1.2em;
}

/* Form Styles */
form {
max-width: 400px;
margin: 20px auto;
padding: 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

form label {
display: block;
margin-bottom: 8px;
}

form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}

form button {
background-color: #5cb85c;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}

form button:hover {
background-color: #4cae4c;
}

/* Catalogue Styles */
.catalogue {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 20px;
}

.product-item {
background-color: white;
margin: 15px;
padding: 20px;
width: 250px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
text-align: center;
}

.product-item img {
width: 100%;
height: auto;
border-radius: 10px;
}

.product-item button {
background-color: #5cb85c;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}

.product-item button:hover {
background-color: #4cae4c;
}
</style>
</head>
<body>

<!-- Home Page ([Link]) -->


<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#login">Login</a></li>
<li><a href="#register">Register</a></li>
<li><a href="#catalogue">Catalogue</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<h1>Welcome to SoulWave</h1>
<p>Embrace calmness, find balance, and nurture your soul.</p>
</section>

<section id="about" class="about">


<h2>About Us</h2>
<p>SoulWave offers a range of resources to help you find peace and
mindfulness in your daily life.</p>
</section>

<!-- Login Page -->


<section id="login">
<h2>Login to SoulWave</h2>
<form action="login_process.php" method="POST">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>

<label for="password">Password:</label>
<input type="password" id="password" name="password" required>

<button type="submit">Login</button>
</form>
</section>

<!-- Register Page -->


<section id="register">
<h2>Create a SoulWave Account</h2>
<form action="register_process.php" method="POST">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>

<label for="email">Email:</label>
<input type="email" id="email" name="email" required>

<label for="password">Password:</label>
<input type="password" id="password" name="password" required>

<button type="submit">Register</button>
</form>
</section>

<!-- Catalogue Page -->


<section id="catalogue" class="catalogue">
<h2>Our Collection</h2>
<div class="product-item">
<img src="[Link]" alt="Product 1">
<h3>Mindful Meditation Kit</h3>
<p>Price: Rs.350</p>
<button>Add to Cart</button>
</div>
<div class="product-item">
<img src="[Link]" alt="Product 2">
<h3>Yoga Mat</h3>
<p>Price: Rs.200</p>
<button>Add to Cart</button>
</div>
<!-- Add more products as needed -->
</section>

<footer>
<p>&copy; 2024 SoulWave. All rights reserved.</p>
</footer>

</body>
</html>

You might also like