-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: srinivas4u <[email protected]>
- Loading branch information
1 parent
8020da3
commit 83db8ca
Showing
1 changed file
with
48 additions
and
0 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,48 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>PricesMinder</title> | ||
<link rel="stylesheet" href="styles.css"> <!-- Link to external CSS file if you have one --> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Welcome to PricesMinder</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="#home">Home</a></li> | ||
<li><a href="#about">About Us</a></li> | ||
<li><a href="#services">Services</a></li> | ||
<li><a href="#contact">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<section id="home"> | ||
<h2>Home</h2> | ||
<p>Welcome to PricesMinder, your one-stop solution for price comparisons!</p> | ||
</section> | ||
|
||
<section id="about"> | ||
<h2>About Us</h2> | ||
<p>PricesMinder helps you find the best prices for products and services across various retailers.</p> | ||
</section> | ||
|
||
<section id="services"> | ||
<h2>Our Services</h2> | ||
<p>Explore our services to get the best deals and save money on your purchases.</p> | ||
</section> | ||
|
||
<section id="contact"> | ||
<h2>Contact Us</h2> | ||
<p>If you have any questions or need assistance, feel free to <a href="mailto:[email protected]">contact us</a>.</p> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<p>© 2024 PricesMinder. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |