-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectronics.html
130 lines (128 loc) · 4.51 KB
/
electronics.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Electronics & Gadgets - 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;
}
.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>Electronics & Gadgets</h1>
<p>Discover the latest and greatest in electronics</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://www.amazon.ca/Oral-B-Electric-Toothbrush-Charger-Rechargeable/dp/B0BP69FS5K/ref=sr_1_4_sspa?crid=1ILZDXHMR0PUI&dib=eyJ2IjoiMSJ9.4flPo2nuWtQtRW_Pjq8nm7iKfqBuyp3v6s84AyyiJySmyDIp0n6YNrpKy5V5TzByh5t6DIl1n7NxA3FF0cMxU52yKbJXDPQ9pAggOERHKDjBuVJf6JPaVeBlzxwGvzFvtxz83tcmWxHBlhDl90pSz539UEWc7n9gVxyTeezcy4MNRmD2THgmuHucudy35MvFB0wYJeMZ2OYqCJDXLYIpORsKUTRaQU3Jf3nElY62maGTm2RIpXJ3rJ66oja5fCi6poFudTMZof_aKoLt5EnkgaAgbMPnsfBb_nsx5CCcNus.kXpcHcwZVlT7gKZn9xRkL7jt7e-5ueDG7eN-8kiH6dA&dib_tag=se&keywords=electric%2Btoothbrush&qid=1716480325&sprefix=el%2Caps%2C144&sr=8-4-spons&sp_csd=d2lkZ2V0TmFtZT1zcF9hdGY&th=1" target="_blank">
Oral-B Electric Toothbrush with Charger
</a>
</li>
<li>
<a href="https://amzn.to/3xMwbwG" target="_blank">
GoPro HERO11 Black
</a>
</li>
<li>
<a href="https://amzn.to/4h5yMDT" target="_blank">
Turtle Beach VelocityOne Flight Universal Control System
</a>
</li>
<li>
<a href="https://amzn.to/4hhiOGQ" target="_blank">
Taloya Flush Mount 12 Inch Ceiling Light
</a>
</li>
<li>
<a href="https://amzn.to/3YlvHHc" target="_blank">
Taloya Flush Mount 12 Inch Ceiling Light 2 units (plus 10$ discount)
</a>
</li>
<li>
<a href="https://amzn.to/3ZrgeXX" target="_blank">
screen protector for iphone
</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>