练习2_简单商品卡.html 830 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .product-card{
  9. width: 400px;
  10. height: 500px;
  11. border:1px solid black;
  12. margin: 0 auto;
  13. padding:40px;
  14. }
  15. .product-img{
  16. width: 400px;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <!-- 类起名 1、要做见名知意。2、如果多个单词 用短横线连接起来 -->
  22. <div class="product-card">
  23. <img class="product-img" src="./img/phone.png" alt="商品图片">
  24. <h2 class="product-name">精美智能手机</h2>
  25. <p>高清屏幕,强大性能,出色拍照。</p>
  26. <p>价格:¥3999</p>
  27. </div>
  28. </body>
  29. </html>