-
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.
- Loading branch information
1 parent
3656306
commit 653ab46
Showing
1 changed file
with
127 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,127 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Welcome to Amazongoods</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f4f4f4; | ||
color: #333; | ||
} | ||
header { | ||
background-color: #ff9900; | ||
color: white; | ||
padding: 10px 0; | ||
text-align: center; | ||
} | ||
nav { | ||
display: flex; | ||
justify-content: center; | ||
background-color: #333; | ||
} | ||
nav a { | ||
color: white; | ||
padding: 14px 20px; | ||
text-decoration: none; | ||
text-align: center; | ||
} | ||
nav a:hover { | ||
background-color: #575757; | ||
} | ||
main { | ||
padding: 20px; | ||
} | ||
footer { | ||
background-color: #333; | ||
color: white; | ||
text-align: center; | ||
padding: 10px 0; | ||
position: fixed; | ||
width: 100%; | ||
bottom: 0; | ||
} | ||
.content { | ||
max-width: 800px; | ||
margin: auto; | ||
} | ||
.category-list { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
.category-list li { | ||
background-color: #ff9900; | ||
margin: 5px 0; | ||
padding: 10px; | ||
color: white; | ||
} | ||
.category-list li a { | ||
color: white; | ||
text-decoration: none; | ||
} | ||
.category-list li:hover { | ||
background-color: #e68a00; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Welcome to Amazongoods</h1> | ||
<p>Discover the Best Amazon Finds, All in One Place</p> | ||
</header> | ||
<nav> | ||
<a href="#electronics">Electronics & Gadgets</a> | ||
<a href="#home-kitchen">Home & Kitchen</a> | ||
<a href="#fashion">Fashion & Accessories</a> | ||
<a href="#health-beauty">Health & Beauty</a> | ||
<a href="#sports-outdoors">Sports & Outdoors</a> | ||
<a href="#toys-games">Toys & Games</a> | ||
<a href="#books-media">Books & Media</a> | ||
</nav> | ||
<main> | ||
<div class="content"> | ||
<section id="introduction"> | ||
<h2>What We Do</h2> | ||
<p>At Amazongoods, we sift through the endless array of products on Amazon to bring you only the best. Our team of dedicated reviewers and savvy shoppers handpick items that offer great value, quality, and customer satisfaction.</p> | ||
</section> | ||
<section id="trust"> | ||
<h2>Why Trust Us?</h2> | ||
<p>Curated Selections: We do the hard work so you don't have to. Every product featured on Amazongoods is carefully selected based on quality, reviews, and value.</p> | ||
<p>Honest Reviews: We provide detailed and honest reviews to help you make informed purchasing decisions.</p> | ||
<p>Affiliate Links: As an Amazon Affiliate, we earn from qualifying purchases. This means that at no extra cost to you, we receive a small commission when you buy through our links. This helps support our blog and allows us to continue bringing you the best finds.</p> | ||
</section> | ||
<section id="categories"> | ||
<h2>Explore Our Categories</h2> | ||
<ul class="category-list"> | ||
<li><a href="#electronics">Electronics & Gadgets</a></li> | ||
<li><a href="#home-kitchen">Home & Kitchen</a></li> | ||
<li><a href="#fashion">Fashion & Accessories</a></li> | ||
<li><a href="#health-beauty">Health & Beauty</a></li> | ||
<li><a href="#sports-outdoors">Sports & Outdoors</a></li> | ||
<li><a href="#toys-games">Toys & Games</a></li> | ||
<li><a href="#books-media">Books & Media</a></li> | ||
</ul> | ||
</section> | ||
<section id="popular-posts"> | ||
<h2>Popular Posts</h2> | ||
<ul class="category-list"> | ||
<li><a href="#">Top 10 Kitchen Gadgets You Didn't Know You Needed</a></li> | ||
<li><a href="#">Best Tech Gadgets for 2024</a></li> | ||
<li><a href="#">Must-Have Fashion Accessories for the Season</a></li> | ||
</ul> | ||
</section> | ||
<section id="contact"> | ||
<h2>Contact Us</h2> | ||
<p>Have questions, suggestions, or feedback? We’d love to hear from you! Contact us at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
</section> | ||
</div> | ||
</main> | ||
<footer> | ||
<p>Thank you for visiting Amazongoods. Happy shopping!</p> | ||
<p>Disclaimer: As an Amazon Associate, we earn from qualifying purchases. This helps us maintain the blog and provide you with the best recommendations.</p> | ||
</footer> | ||
</body> | ||
</html> |