-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-kitchen.html
103 lines (103 loc) · 2.89 KB
/
home-kitchen.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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">
Ninja Blast Portable Blender
</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>