In-depth analysis of commonly used header tags in the head tag

青灯夜游
Release: 2022-08-02 19:28:32
Original
3523 people have browsed it

In-depth analysis of commonly used header tags in the head tag

HTML 中的

标签是所有头部标签的容器,这些头部标签用来定义有关 HTML 文档的元数据(描述数据的数据)以及所需资源的引用(例如 CSS 样式文件、JavaScript 脚本文件),对文档能够在浏览器中正确显示起到了非常重要的作用。根据我们的需求,可以在 HTML 头部定义大量的元数据,也可以定义很少或者根本就不定义。虽然头部标签是 HTML 文档的一部分,但其中的内容并不会显示在浏览器中。

标签中可以使用的头部标签有 、<base>、<link>、<style>、<meta>、<script> 和 <noscript> 等,下面就来简单介绍一下它们。<p><span style="font-size: 18px;"><strong>1、<title> 标签<p><title> 标签用来定义 HTML 文档的标题,只有包含 <title> 标签的文档才算是一个有效的 HTML 文档。另外,一个 HTML 文档中仅允许存在一个 <title> 标签,并且 <title> 标签必须放置在 <head> 标签中。<p>注意,在 <title> 标签内部仅允许包含纯文本内容,不能包含其他 HTML 标签。<p><title> 标签的主要作用如下所示:<ul style="list-style-type: disc;"><li><p>在浏览器标题栏或者任务栏中显示标题;<li><p>当将页面添加到收藏夹(书签)时提供标题;<li><p>在搜索结果中显示页面标题。<p>下面的示例演示了如何在 HTML 文档中使用 <title> 标签:<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <meta charset="utf-8"> <title>php中文网-教程_手册_视频-免费php在线学习平台</title> </head></pre><div class="contentsignin">Copy after login</div></div><p><img src="https://img.php.cn/upload/image/763/716/146/1659439266455416.png" title="1659439266455416.png" alt="In-depth analysis of commonly used header tags in the head tag"/></p><p><title> 标签的内容必须与当前文档有关,并且不应该过长,中文页面请尽量控制在 30 个字符(包括空格)以内。</p><p><span style="max-width:90%"><strong>2、<base> 标签</strong></span></p><p><base> 标签用于为页面中所有相对链接指定一个基本链接,当您设置了基本链接后,当前页面中的所有相对链接都会使用这个基本链接作为前缀,如下例所示:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title><base>标签演示</title> <base href="https://www.php.cn/"> </head> <body> <ul> <li><a href="course.html">视频教程</a></li> <li><a href="course/type/3.html">入门教程</a></li> </ul> </body> </html></pre><div class="contentsignin">Copy after login</div></div><p><img src="https://img.php.cn/upload/image/317/905/207/1659439333627667.png" title="1659439333627667.png" alt="In-depth analysis of commonly used header tags in the head tag"/></p><p>上面的示例中第一个 <li> 标签中的超链接会被解析为“https://www.php.cn/course.html”,第二个 <li> 中的超链接会被解析为“https://www.php.cn/course/type/3.html”。</p><blockquote><p>注意,HTML 文档中的 <base> 标签必须出现在任何引用外部资源的标签之前,而且一个 HTML 文档中仅允许定义一个 <base> 标签。</p></blockquote><p><span style="max-width:90%"><strong>3、<link> 标签</strong></span></p><p><link> 标签经常用于引用外部 CSS 样式表,<link> 标签中包含两个主要的属性,分别是 rel 和 href。rel 属性用来指示引用文件的类型,href 属性用来设置外部文件的路径。示例代码如下:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <title>此处书写标题</title> <link rel="stylesheet" href="common.css"> </head></pre><div class="contentsignin">Copy after login</div></div><p>HTML <head> 标签中可以包含任意数量的 <link> 标签。</p><p>扩展:引用外部 CSS 样式表有两种,link和@import</p><ul style="list-style-type: disc;"><li><p>@import在<style>标签中进行声明的</p></li></ul><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><style type="text/css"> @import url("css文件路径"); </style></pre><div class="contentsignin">Copy after login</div></div><p>简单实例:</p><p>css外部样式表 style.css</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:js;toolbar:false">h1{ color:red; } p{ font-size:14px; color:green; }</pre><div class="contentsignin">Copy after login</div></div><p>HTML文档<br/></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:js;toolbar:false"><!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <link type="text/css" rel="styleSheet" href="style.css" /> <!-- <style> @import url("style.cs"); </style> --> </head> <body> <h1>link标签或@import的应用</h1> <p>外部定义CSS样式表以.CSS为扩展名文件,然后在页面中通过link标签或@import链接到页面中。</p> </body> </html></pre><div class="contentsignin">Copy after login</div></div><p>实现效果:</p><p><img src="https://img.php.cn/upload/image/908/714/297/1658924545613553.png"/ alt="In-depth analysis of commonly used header tags in the head tag" ></p><p><strong>link和@import的区别:</strong></p><p>1、从属关系区别</p><p>@import是 CSS 提供的语法规则,只有导入样式表的作用;link是HTML提供的标签,不仅可以加载 CSS 文件,还可以定义 RSS、rel 连接属性等。</p><p>2、加载顺序区别</p><p>加载页面时,link标签引入的 CSS 被同时加载;@import引入的 CSS 将在页面加载完毕后被加载。</p><p>3、兼容性区别</p><p>@import是 CSS2.1 才有的语法,故只可在 IE5+ 才能识别;link标签作为 HTML 元素,不存在兼容性问题。</p><p>4、DOM可控性区别</p><p>可以通过 JS 操作 DOM ,插入link标签来改变样式;由于 DOM 方法是基于文档的,无法使用@import的方式插入样式。</p><p><span style="max-width:90%"><strong>4、<style>标签</strong></span></p><p>使用 <style> 标签可以在 HTML 文档中嵌入 CSS 样式,需要注意的是在 <style> 标签中定义的样式仅对当前 HTML 文档有效。示例代码如下:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <title>此处书写标题</title> <style> body { background-color: YellowGreen; } h1 { color: red; } p { color: green; } </style> </head></pre><div class="contentsignin">Copy after login</div></div><blockquote><p>注意:对于文档中的唯一样式可以使用 <style> 标签,但对于在多个文档中通用的样式,使用外部样式表更为合适。</p></blockquote><p><span style="font-size: 18px;"><strong>5、<meta> 标签</strong></span></p><p><span style="font-size: 18px;"></span><meta> 标签用于提供有关 HTML 文档的元数据,例如页面有效期、页面作者、关键字列表、页面描述等信息。<meta> 标签定义的数据并不会显示在页面上,但却会被浏览器解析。</p><p>1) 定义字符集</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><meta charset="UTF-8"></pre><div class="contentsignin">Copy after login</div></div><p>charset 属性用来指定 HTML 文档的字符编码,上面的示例中,我们将文档的字符编码设置为了“UTF-8”。</p><p>2) 定义页面描述</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><meta name="description" content="php中文网提供大量免费、原创、高清的php视频教程,并定期举行公益php培训!可边学习边在线修改示例代码,查看执行效果!php从入门到精通,一站式php自学平台!"></pre><div class="contentsignin">Copy after login</div></div><p>定义页面的描述信息有利于搜索引擎的搜索。</p><blockquote><p><title> 标签定义文档标题,name="description" 定义文档描述,描述的长度通常大于标题。</p></blockquote><p>3) 定义关键字</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><meta name="keywords" content="php教程,php入门教程,php视频教程,php源码下载,php手册"></pre><div class="contentsignin">Copy after login</div></div><p>关键字用于为搜索引擎提供与页面有关的信息。</p><p>4) 定义页面作者</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><meta name="author" content="PHP中文网"></pre><div class="contentsignin">Copy after login</div></div><p>通过某些内容管理系统可以自动提取作者信息。</p><p>5) 刷新页面</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false;"><meta http-equiv="refresh" content="30"></pre><div class="contentsignin">Copy after login</div></div><p>上例中的代码用于向浏览器发送一个指令,使浏览器在经过指定的时间间隔(30 秒)后自动刷新页面。在 content 属性中除了可以指定时间间隔外,还可以再指定一个链接,这时页面将在指定的时间后重定向到链接所指向的页面,如下例所示:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><meta http-equiv="refresh" content="10; url=https://www.php.cn/"></pre><div class="contentsignin">Copy after login</div></div><p><span style="font-size: 18px;"><strong>6、<script> 标签</strong></span></p><p><script> 标签用于定义 JavaScript 脚本</p><p>通过script标签嵌入JavaScript 脚本代码或链入脚本文件</p><p>示例代码如下:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <title>PHP中文网</title> <script> document.write("PHP中文网") </script> </head></pre><div class="contentsignin">Copy after login</div></div><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><head> <script src="js/test.js"></script> </head></pre><div class="contentsignin">Copy after login</div></div><p><span style="font-size: 18px;"><strong>7、<noscript> 标签</strong></span></p><p>当用户的浏览器不支持 JavaScript 脚本或者禁用 JavaScript 脚本时,可以在 <noscript> 标签中定义一些内容来替代不能运行的 JavaScript 脚本或者给用户一些提示。除了 <script> 标签外,在 <noscript> 标签中可以包含任何 HTML 元素,如下例所示:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <title>PHP中文网</title> <noscript> <p>您的浏览器不支持 JavaScript 或者您禁用了 JavaScript,请<a href="https://www.php.cn/">点击这里</a>了解如何启用 JavaScript。</p> </noscript> </head></pre><div class="contentsignin">Copy after login</div></div><p>相关推荐:《<a href="http://www.php.cn/course/list/11.html" target="_blank" textvalue="html视频教程">html视频教程》</style>

The above is the detailed content of In-depth analysis of commonly used header tags in the head tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template