<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Product Card</title> <style> .card { width: 250px; padding: 15px; border: 1px solid #ccc; border-radius: 10px; text-align: center; } img { width: 100%; height: 150px; object-fit: cover; } </style> </head> <body> <div class="card"> <img src="food.png" alt="Product"> <h3>Product Name</h3> <p>$25.00</p> <button>Add to Cart</button> </div> </body> </html>
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter