6_标签嵌套.html 600 B

1234567891011121314151617181920212223242526272829303132333435
  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. </head>
  8. <body>
  9. <div>
  10. <div>hello world</div>
  11. </div>
  12. <!-- p 内部不能嵌套块标签 -->
  13. <p>
  14. <div>hello</div>
  15. </p>
  16. <p>
  17. 你好
  18. <span>hello</span>
  19. 世界
  20. </p>
  21. <h1>hello</h1>
  22. <h1>hello</h1>
  23. <span>world</span>
  24. <span>world</span>
  25. <img src="./111.jpeg" width="100" alt="111">
  26. <img src="./111.jpeg" width="100" alt="111">
  27. </body>
  28. </html>