Skip to content

Commit

Permalink
Merge pull request #261 from Srujitha-Raghava/navbar
Browse files Browse the repository at this point in the history
navbar functionality is modified
  • Loading branch information
Rajan-Barnwal committed May 22, 2024
2 parents fcacb20 + 904296d commit ed37aac
Show file tree
Hide file tree
Showing 6 changed files with 390 additions and 7 deletions.
89 changes: 89 additions & 0 deletions customers.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Customer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}

header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}

main {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}

.testimonial {
background-color: #fff;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial p {
font-size: 16px;
color: #333;
}

.testimonial .author {
font-weight: bold;
margin-top: 10px;
}

.testimonial .company {
font-style: italic;
color: #666;
}

.separator {
border-top: 1px solid #ddd;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Customer</h1>
<p>This page provides information about our company's customers, testimonials, case studies, or success stories.</p>
</header>

<main>
<div class="testimonial">
<p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus suscipit, justo a lacinia malesuada."</p>
<p class="author">John Doe</p>
<p class="company">ABC Company</p>
</div>

<div class="testimonial">
<p>"Nullam ac felis vel lorem blandit vestibulum. Fusce dapibus, neque vitae euismod consequat."</p>
<p class="author">Jane Smith</p>
<p class="company">XYZ Corporation</p>
</div>

<!-- Add more testimonials or case studies here -->

<div class="separator"></div>

<h2>Case Studies</h2>
<p>Here are some case studies highlighting successful projects or partnerships:</p>
<ul>
<li>Case Study 1</li>
<li>Case Study 2</li>
<!-- Add more case studies here -->
</ul>
</main>
</body>
</html>
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@
</div>

<!-- nav bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<nav class="navbar navbar-expand-lg navbar-light bg-">
<div class="container-fluid">
<!--<div class="container main-nav flex">-->
<a href="#" class="company-logo">
<img src="./assets/asset 1.png" alt="company logo">
</a>
<div class="nav-links" id="nav-links">
<ul class="flex">
<li><a href="#" class="hover-link">Products</a></li>
<li><a href="#" class="hover-link">Customer</a></li>
<li><a href="#" class="hover-link">Pricing</a></li>
<li><a href="#" class="hover-link">Resources</a></li>
<li><a href="signin.html" class="hover-link secondary-button">Sign in</a></li>
<li><a href="products.html" class="hover-link">Products</a></li>
<li><a href="customers.html" class="hover-link">Customer</a></li>
<li><a href="pricing.html" class="hover-link">Pricing</a></li>
<li><a href="resources.html" class="hover-link">Resources</a></li>
<li><a href="signin.html" class="hover-link primary-button">Sign in</a></li>
<li><a href="signup.html" class="hover-link primary-button">Sign up</a></li>
<img src="moon.png" id="icon">
</ul>
Expand Down
98 changes: 98 additions & 0 deletions pricing.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}

header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
}

main {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}

.pricing-table {
border-collapse: collapse;
width: 100%;
}

.pricing-table th, .pricing-table td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #ddd;
}

.pricing-table th {
background-color: #007bff;
color: #fff;
}

.cta-button {
display: inline-block;
background-color: #007bff;
color: #fff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}

.cta-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<header>
<h1>Pricing</h1>
<p>This page outlines the pricing plans or packages offered by our company. You can find details about different tiers, features included in each plan, and pricing information.</p>
</header>

<main>
<table class="pricing-table">
<thead>
<tr>
<th>Plan</th>
<th>Features</th>
<th>Price</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>Basic</td>
<td>Feature 1, Feature 2</td>
<td>$XX.XX/month</td>
<td><a href="#" class="cta-button">Sign Up</a></td>
</tr>
<tr>
<td>Standard</td>
<td>Feature 1, Feature 2, Feature 3</td>
<td>$XX.XX/month</td>
<td><a href="#" class="cta-button">Sign Up</a></td>
</tr>
<tr>
<td>Premium</td>
<td>Feature 1, Feature 2, Feature 3, Feature 4</td>
<td>$XX.XX/month</td>
<td><a href="#" class="cta-button">Sign Up</a></td>
</tr>
</tbody>
</table>
</main>
</body>
</html>
95 changes: 95 additions & 0 deletions products.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Products</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}

header {
background-color: #f0f0f0;
padding: 20px;
text-align: center;
}

main {
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.product {
width: 300px;
margin: 20px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
}

.product img {
width: 100%;
border-radius: 5px;
}

.product h2 {
margin-top: 10px;
}

.product p {
margin-top: 10px;
font-size: 14px;
color: #666;
}

.button {
display: block;
width: 100%;
text-align: center;
background-color: #007bff;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
text-decoration: none;
margin-top: 15px;
}

.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<header>
<h1>Products</h1>
<p>This page showcases the various products or services offered by our company. You can find details about each product, such as features, pricing, and customer reviews.</p>
</header>

<main>
<section class="product">
<img src="product1.jpg" alt="Product 1">
<h2>Product 1</h2>
<p>Description of Product 1. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>Price: $XX.XX</p>
<a href="#" class="button">Learn More</a>
</section>

<section class="product">
<img src="product2.jpg" alt="Product 2">
<h2>Product 2</h2>
<p>Description of Product 2. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>Price: $XX.XX</p>
<a href="#" class="button">Learn More</a>
</section>

<!-- Add more sections for additional products -->

</main>
</body>
</html>
Loading

0 comments on commit ed37aac

Please sign in to comment.