综合练习题1.html 502 B

1234567891011121314151617181920212223242526272829
  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. img{
  9. width: 200px;
  10. }
  11. p{
  12. color: blue;
  13. }
  14. .box{
  15. text-align: center;
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div class="box">
  21. <h1>标题</h1>
  22. <p>段落</p>
  23. <img src="./image/logo.png" alt="">
  24. </div>
  25. </body>
  26. </html>