Home > Article > Web Front-end > Usage examples of meta tags in html
The content shared with you in this article is about the usage examples of meta tags in HTML. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Some usages of meta tags
<!--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>
Related recommendations:
HTML objects: Introduction to some html object attributes
Example code of div tag in HTML5The above is the detailed content of Usage examples of meta tags in html. For more information, please follow other related articles on the PHP Chinese website!