Untitled
unknown
plain_text
7 months ago
2.2 kB
2
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>متجر الكتروني</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; } header { background-color: #333; color: #fff; padding: 10px; text-align: center; } .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; } .product { float: left; width: 30%; margin: 10px; padding: 10px; border: 1px solid #ddd; box-sizing: border-box; } .product img { width: 100%; height: auto; } .product h2 { font-size: 18px; margin-top: 0; } .product p { font-size: 16px; margin-bottom: 0; } </style> </head> <body> <header> <h1>متجر الكتروني</h1> </header> <div class="container"> <div class="product"> <img src="product1.jpg" alt="قطع غيار السيارات"> <h2>قطع غيار السيارات</h2> <p>وصف لقطع غيار السيارات وميزاتها</p> <p>السعر: $50</p> <button>أضف إلى السلة</button> </div> <div class="product"> <img src="product2.jpg" alt="هواتف ذكية"> <h2>هواتف ذكية</h2> <p>وصف لهواتف الذكية وميزاتها</p> <p>السعر: $500</p> <button>أضف إلى السلة</button> </div> <div class="product"> <img src="product3.jpg" alt="إكسسوارات"> <h2>إكسسوارات</h2> <p>وصف للإكسسوارات وميزاتها</p> <p>السعر: $20</p> <button>أضف إلى السلة</button> </div> </div> </body> </html>
Leave a Comment