# Sample product data (you can expand this list with your own links)
products = [
{
"title": "Logitech M330 Wireless Mouse",
"image": "https://m.media-amazon.com/images/I/61LtuGzXeaL._AC_SL1500_.jpg",
"link": "https://amzn.to/3SIK3Pn",
"description": "Silent clicks, long battery life, and wireless freedom for home or office use."
},
{
"title": "Razer Kraken Gaming Headset",
"image": "https://m.media-amazon.com/images/I/71jG+e7roXL._AC_SL1500_.jpg",
"link": "https://amzn.to/3SIK3Pn",
"description": "Immersive sound, cooling gel ear cushions, and built-in mic for pro gamers."
},
{
"title": "Anker Fast Smartphone Charger",
"image": "https://m.media-amazon.com/images/I/61jLiCovxXL._AC_SL1500_.jpg",
"link": "https://amzn.to/3SIK3Pn",
"description": "Compact design with USB-C power delivery for quick and safe charging."
}
]
# Generate HTML blog content
html_post = "
Top 3 Amazon Tech Accessories
\n
Here are some of the best-selling and highly-rated tech accessories available on Amazon right now:
\n"
for product in products:
html_post += f"""
{product['title']}
{product['description']}
Buy on Amazon
"""
# Output the HTML blog content
print(html_post)
0 Comments