Simple E-Commerce
🛒 My E-Commerce
Cart: 0
Product 1
$10
Product 2
$15
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
}
header {
background: #333;
color: #fff;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.product-list {
display: flex;
gap: 20px;
padding: 20px;
flex-wrap: wrap;
justify-content: center;
}
.product {
background: #fff;
border: 1px solid #ddd;
padding: 15px;
width: 200px;
text-align: center;
border-radius: 5px;
}
.product img {
width: 100%;
}
button {
background: #28a745;
color: white;
border: none;
padding: 8px 12px;
cursor: pointer;
border-radius: 4px;
margin-top: 10px;
}
button:hover {
background: #218838;
}
Comments
Post a Comment