【HTML 元素】标记文字详解

时间:2017-04-09

1.用基本的文字元素标记内容

先看显示效果:

对应HTML代码:

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPE html>  
  2. <html lang="en">  
  3. <head>  
  4.     <meta charset="UTF-8">  
  5.     <title>Learn4Font</title>  
  6. </head>  
  7. <body>  
  8. <p> 元素 b —— <b> I am the example.</b></p>  
  9. <p> 元素 em —— <em> I am the example.</em></p>  
  10. <p> 元素 i —— <i> I am the example.</i></p>  
  11. <p> 元素 s —— <s> I am the example.</s></p>  
  12. <p> 元素 strong —— <strong> I am the example.</strong></p>  
  13. <p> 元素 u —— <u> I am the example.</u></p>  
  14. <p> 元素 small —— <small> I am the example.</small></p>  
  15. <p> 元素 sub —— <sub> I am the example.</sub></p>  
  16. <p> 元素 sup —— <sup> I am the example.</sup></p>  
  17. </body>  
  18. </html>  
  • 共3页:
  • 上一篇1/3
  • 下一页
  • 上一篇:【HTML 元素】嵌入图像的实现方法 下一篇:HTML基础笔记(推荐)

    相关文章

    最新文章