-
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
a8064ee
commit 3c326bf
Showing
1 changed file
with
103 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,103 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Home & Kitchen - SereneGoods</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; | ||
} | ||
.product-list { | ||
list-style-type: none; | ||
padding: 0; | ||
} | ||
.product-list li { | ||
background-color: #ff9900; | ||
margin: 5px 0; | ||
padding: 10px; | ||
color: white; | ||
} | ||
.product-list li a { | ||
color: white; | ||
text-decoration: none; | ||
} | ||
.product-list li:hover { | ||
background-color: #e68a00; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Home & Kitchen</h1> | ||
<p>Find the best products for your home and kitchen</p> | ||
</header> | ||
<nav> | ||
<a href="index.html">Home</a> | ||
<a href="electronics.html">Electronics & Gadgets</a> | ||
<a href="home-kitchen.html">Home & Kitchen</a> | ||
<a href="fashion.html">Fashion & Accessories</a> | ||
<a href="health-beauty.html">Health & Beauty</a> | ||
<a href="sports-outdoors.html">Sports & Outdoors</a> | ||
<a href="toys-games.html">Toys & Games</a> | ||
<a href="books-media.html">Books & Media</a> | ||
</nav> | ||
<main> | ||
<div class="content"> | ||
<h2>Featured Products</h2> | ||
<ul class="product-list"> | ||
<li> | ||
<a href="https://amzn.to/4ckeP9t" target="_blank"> | ||
Instant Pot Duo 7-in-1 Electric Pressure Cooker | ||
</a> | ||
</li> | ||
<!-- Add more products as needed --> | ||
</ul> | ||
</div> | ||
</main> | ||
<footer> | ||
<p>Thank you for visiting SereneGoods. 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> |