11_实体字符.html 544 B

12345678910111213141516171819202122
  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. <!-- 页面中如果添加了连续多个空格 浏览器会自动合并为一个空格 -->
  10. hello world
  11. <!-- 实体字符 -->
  12. <!-- &nbsp; 表示空格 -->
  13. hello&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; world!
  14. <!-- 5<10 -->
  15. <!-- &lt; 表示小于号 -->
  16. <!-- &gt; 表示大于号 -->
  17. 5 &lt; 10 &gt; 1
  18. </body>
  19. </html>