這篇文章要跟大家分享的內容是關於html中meta標籤的用法實例,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
meta標籤的一些用法
<!--meta模板 --> <!DOCTYPE html> <html> <head> <meta name="keywords" content="内容"/> <meta name="description" content="描述" /> <meta name="generator" content="编辑器" /> <meta name="author" content="名字" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <!-- 自动刷新 <meta http-equiv="refresh" content="3;url="> --> <title></title> </head> <body> 正文 </body> </html>
相關推薦:
HTML5中div標籤的實例代碼以上是html中meta標籤的用法實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!