-
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
803bd33
commit 82c606e
Showing
1 changed file
with
121 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,121 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>EV Cars - 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> | ||
<a href="ev.html">Tesla and EV Cars</a> | ||
</nav> | ||
<main> | ||
<div class="content"> | ||
<h2>Featured Products</h2> | ||
<ul class="product-list"> | ||
<li> | ||
<a href="https://amzn.to/3Zs1R5w" target="_blank"> | ||
SEGUMA Level 2 EV Charger for Tesla Charger | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://amzn.to/3ZfgCYj" target="_blank"> | ||
SBB NEMA 14-30P to 14-50R Adapter | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://amzn.to/3OvQAej" target="_blank"> | ||
Spigen Tempered Glass Screen Protector Designed for Tesla | ||
</a> | ||
</li> | ||
|
||
<li> | ||
<a href="https://amzn.to/3ZE0lxD" target="_blank"> | ||
TAPTES Floor Mats Full Set for Tesla | ||
</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> |