-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #261 from Srujitha-Raghava/navbar
navbar functionality is modified
- Loading branch information
Showing
6 changed files
with
390 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.