card
Sat Nov 16 2024 02:37:41 GMT+0000 (Coordinated Universal Time)
Saved by
@wtlab
<!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>
content_copyCOPY
Comments