HTML中的元素用于描述元数据,即描述、关键字、文档作者等。该元数据不会显示在页面上,但由搜索引擎、网络浏览器等使用。
现在,您还可以在下设置视口来设置网页的尺寸 -
<meta name="viewport" content="width=device-width, initial-scale=1.0">
以下是属性 -
Sr.No | 类型和描述 |
---|---|
1 | 名称 strong> 属性的名称。可以是任何东西。示例包括关键字、描述、作者、修订版本、生成器等。 |
2 | 内容 指定属性的值。 |
3 | 方案(已弃用) 指定解释属性值的方案(如内容属性中声明的那样)。 |
4 | http-equiv 用于http响应消息头。例如,http-equiv 可用于刷新页面或设置 cookie。值包括 content-type、expires、refresh 和 set-cookie。 |
5 | 字符集 字符编码。 |
现在让我们看一个实现 标记的示例 -
现场演示
<!DOCTYPE html> <html> <head> <meta name="description" content="Learn for free"> <meta name="keywords" content="Video tutorials, free tutorials, learn, web"> <meta http-equiv="refresh" content="20"> <meta name="author" content="Jack Sparrow"> </head> <body> <h2>Tutorials</h2> <p>Programming tutorials for free:</p> <ol> <li>Java</li> <li>C++</li> <li>C</li> <li>C#</li> </ol> </body> </html>
这将产生以下输出 -
以上是HTML标签的详细内容。更多信息请关注PHP中文网其他相关文章!