html头部 -尊龙凯时网娱乐最新版
html 元素
元素包含了所有的头部标签元素。在 元素中你可以插入脚本(scripts), 样式文件(css),及各种meta信息。
可以添加在头部区域的元素标签为:
, <style>, <meta>, <link>, <script>, <noscript>, and <base>.</p><h2 id="articleheader2" style="box-sizing: border-box; font-family: "helvetica neue", helvetica, arial, sans-serif; line-height: 1.1; color: rgb(51, 51, 51); margin-top: 10px; margin-bottom: 10px; font-size: 23px; white-space: normal; background-color: rgb(255, 255, 255);">html <title> 元素</h2><p style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; line-height: 22px; text-indent: 10px; color: rgb(51, 51, 51); font-family: "helvetica neue", helvetica, arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);"><title> 标签定义了不同文档的标题。</p><p style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; line-height: 22px; text-indent: 10px; color: rgb(51, 51, 51); font-family: "helvetica neue", helvetica, arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);"><title> 在 html/xhtml 文档中是必须的。</p><p style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; line-height: 22px; text-indent: 10px; color: rgb(51, 51, 51); font-family: "helvetica neue", helvetica, arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);"><title> 元素:</p><ul class="list-group list-paddingleft-2" style="box-sizing: border-box; margin-bottom: 10px; padding-left: 0px; color: rgb(51, 51, 51); font-family: "helvetica neue", helvetica, arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);"><li class=" item-h" style=""><p>定义了浏览器工具栏的标题</p></li><li class=" item-h" style=""><p>当网页添加到收藏夹时,显示在收藏夹中的标题</p></li><li class=" item-h" style=""><p>显示在搜索引擎结果页面的标题</p></li></ul><p style="box-sizing: border-box; margin-top: 0px; margin-bottom: 10px; line-height: 22px; text-indent: 10px; color: rgb(51, 51, 51); font-family: "helvetica neue", helvetica, arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);">一个简单的 html 文档:</p><div class="code" style="box-sizing: border-box; border-radius: 3px; color: rgb(51, 51, 51); font-family: "helvetica neue", helvetica, arial, sans-serif; white-space: normal; background-color: rgb(255, 255, 255);"><pre class="prettyprint linenums prettyprinted" style="box-sizing: border-box; overflow: auto; font-family: menlo, monaco, consolas, "courier new", monospace; padding: 8px; margin-top: 0px; margin-bottom: 10px; line-height: 1.42857; word-break: break-all; overflow-wrap: break-word; background-color: rgb(247, 247, 249); border: 1px solid rgb(225, 225, 232); border-radius: 4px; position: relative; box-shadow: rgb(251, 251, 252) 40px 0px 0px inset, rgb(236, 236, 240) 41px 0px 0px inset;"><ol class="linenums list-paddingleft-2" style="box-sizing: border-box; margin-left: -5px;"><li><div style="box-sizing: border-box; border-radius: 3px;"><span class="pln" style="box-sizing: border-box; color: #48484c;"> </span><span class="dec" style="box-sizing: border-box; color: teal;"><!doctype html></span><br style="box-sizing: border-box;"/><span class="pln" style="box-sizing: border-box; color: #48484c;"> </span><span class="tag" style="box-sizing: border-box; color: #1e347b;"><html></span><br style="box-sizing: border-box;"/><span class="pln" style="box-sizing: border-box; color: #48484c;"> </span><span class="tag" style="box-sizing: border-box; color: #1e347b;"><head></span><br style="box-sizing: border-box;"/><span class="pln" style="box-sizing: border-box; color: #48484c;"> </span><span class="tag" style="box-sizing: border-box; color: #1e347b;"><title></span><span class="pln" style="box-sizing: border-box; color: #48484c;">title of the document</span><span class="tag" style="box-sizing: border-box; color: #1e347b;"> the content of the document...... html 元素
标签描述了基本的链接地址/链接目标,该标签作为html文档中所有的链接标签的默认链接:
href="http://www.nez.cn/images/"target="_blank">
html 元素
标签定义了文档与外部资源之间的关系。
标签通常用于链接到样式表:
rel="stylesheet"type="text/css"href="mystyle.css">
html
html 元素
meta标签描述了一些基本的元数据。
标签提供了元数据.元数据也不显示在页面上,但会被浏览器解析。
meta元素通常用于指定网页的描述,关键词,文件的最后修改时间,作者,和其他元数据。
元数据可以使用于浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他web服务。
一般放置于 区域
标签- 使用实例
为搜索引擎定义关键词:
为网页定义描述内容:
定义网页作者:
每30秒中刷新当前页面:
html