您现在的位置是:网站首页>列表内容

HTML head 头标签详细介绍HTML头标签meta实现refresh重新定向详解html头标签的使用

2021-08-30 11:13:38 3767人已围观

简介 本篇以一丝的文章为基础,进行扩展总结介绍常用的 head 中各个标签、元素的意义以及使用场景

HTML head 头部分的标签、元素有很多,涉及到浏览器对网页的渲染,SEO 等等,而各个浏览器内核以及各个国内浏览器厂商都有些自己的标签元素,这就造成了很多差异性。移动互联网时代,head 头部结构,移动端的 meta 元素,显得更为重要。了解每个标签的意义,写出满足自己需求的 head 头标签,是本文的目的。本篇以一丝的文章为基础,进行扩展总结介绍常用的 head 中各个标签、元素的意义以及使用场景。

DOCTYPE

DOCTYPE(Document Type),该声明位于文档中最前面的位置,处于 html 标签之前,此标签告知浏览器文档使用哪种 HTML 或者 XHTML 规范。

DTD(Document Type Definition) 声明以 开始,不区分大小写,前面没有任何内容,如果有其他内容(空格除外)会使浏览器在 IE 下开启怪异模式(quirks mode)渲染网页。公共 DTD,名称格式为注册//组织//类型 标签//语言,注册指组织是否由国际标准化组织(ISO)注册,+表示是,-表示不是。组织即组织名称,如:W3C。类型一般是 DTD。标签是指定公开文本描述,即对所引用的公开文本的唯一描述性名称,后面可附带版本号。最后语言是 DTD 语言的 ISO 639 语言标识符,如:EN 表示英文,ZH 表示中文。XHTML 1.0 可声明三种 DTD 类型。分别表示严格版本,过渡版本,以及基于框架的 HTML 文档。

●HTML 4.01 strict

XML/HTML Code复制内容到剪贴板
  1. >  
●HTML 4.01 Transitional

XML/HTML Code复制内容到剪贴板
  1. >  
●HTML 4.01 Frameset

XML/HTML Code复制内容到剪贴板
  1. >  
●最新 HTML5 推出更加简洁的书写,它向前向后兼容,推荐使用。

XML/HTML Code复制内容到剪贴板
  1. >  

在 HTML中 doctype 有两个主要目的。

●对文档进行有效性验证。

它告诉用户代理和校验器这个文档是按照什么 DTD 写的。这个动作是被动的,每次页面加载时,浏览器并不会下载 DTD 并检查合法性,只有当手动校验页面时才启用。

●决定浏览器的呈现模式

对于实际操作,通知浏览器读取文档时用哪种解析算法。如果没有写,则浏览器则根据自身的规则对代码进行解析,可能会严重影响 html 排版布局。浏览器有三种方式解析 HTML 文档。

●非怪异(标准)模式
●怪异模式
●部分怪异(近乎标准)模式 关于IE浏览器的文档模式,浏览器模式,严格模式,怪异模式,DOCTYPE 标签,可详细阅读模式?标准!的内容。

charset

声明文档使用的字符编码,

XML/HTML Code复制内容到剪贴板
  1. <meta charset="utf-8">  

html5 之前网页中会这样写:

XML/HTML Code复制内容到剪贴板
  1. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">  

这两个是等效的,具体可移步阅读: vs ,所以建议使用较短的,易于记忆。

lang属性

  简体中文 

XML/HTML Code复制内容到剪贴板
  1. <html lang="zh-cmn-Hans">  

  繁体中文

XML/HTML Code复制内容到剪贴板
  1. <html lang="zh-cmn-Hant">    

  为什么 lang="zh-cmn-Hans" 而不是我们通常写的 lang="zh-CN" 呢,请移步阅读: 页头部的声明应该是用 lang="zh" 还是 lang="zh-cn"

优先使用 IE 最新版本和 Chrome

XML/HTML Code复制内容到剪贴板
  1. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />  

  360 使用Google Chrome Frame

XML/HTML Code复制内容到剪贴板
  1. <meta name="renderer" content="webkit">  

  360 浏览器就会在读取到这个标签后,立即切换对应的极速核。 另外为了保险起见再加入

XML/HTML Code复制内容到剪贴板
  1. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">  

  这样写可以达到的效果是如果安装了 Google Chrome Frame,则使用 GCF 来渲染页面,如果没有安装 GCF,则使用最高版本的 IE 内核进行渲染。

  相关链接:浏览器内核控制 Meta 标签说明文档

百度禁止转码

  通过百度手机打开网页时,百度可能会对你的网页进行转码,脱下你的衣服,往你的身上贴狗皮膏药的广告,为此可在 head 内添加 

XML/HTML Code复制内容到剪贴板
  1. <meta http-equiv="Cache-Control" content="no-siteapp" />  

  相关链接:SiteApp 转码声明


SEO 优化部分

页面标题标签(head 头部必须) <br><br></p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_3566')">复制内容到剪贴板</span> </div> <div id="code_3566"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">title</span><span class="tag">></span><span>your title</span><span class="tag"></</span><span class="tag-name">title</span><span class="tag">></span><span>  </span></span></li> </ol> </div> </div> <p>页面关键词 keywords <br><br></p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_5916')">复制内容到剪贴板</span> </div> <div id="code_5916"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"keywords"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"your keywords"</span><span class="tag">></span><span>   </span></span></li> </ol> </div> </div> <p><br>页面描述内容 description <br></p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_8699')">复制内容到剪贴板</span> </div> <div id="code_8699"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"description"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"your description"</span><span class="tag">></span><span>  </span></span></li> </ol> </div> </div> <p>定义网页作者 author <br></p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_2733')">复制内容到剪贴板</span> </div> <div id="code_2733"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"author"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"author,email address"</span><span class="tag">></span><span>  </span></span></li> </ol> </div> </div> <p>定义网页搜索引擎索引方式,robotterms 是一组使用英文逗号「,」分割的值,通常有如下几种取值:none,noindex,nofollow,all,index和follow。 <br><br><span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_1191')">复制内容到剪贴板</span></p> <div class="codeText"> <div id="code_1191"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"robots"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"index,follow"</span><span class="tag">></span><span>  </span></span></li> </ol> </div> </div> <p>相关链接:<a target="_blank" href="http://msdn.microsoft.com/zh-cn/library/ff724037(v=expression.40).aspx">WEB1038 - 标记包含无效的值</a> <br><br><strong>viewport</strong></p> <p>  viewport 可以让布局在移动浏览器上显示的更好。 通常会写</p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_2172')">复制内容到剪贴板</span> </div> <div id="code_2172"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"viewport"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"width=device-width, initial-scale=1.0"</span><span class="tag">></span><span>  </span></span></li> </ol> </div> </div> <p>width=device-width 会导致 iPhone 5 添加到主屏后以 WebApp 全屏模式打开页面时出现黑边(<a href="http://bigc.at/ios-webapp-viewport-meta.orz">http://bigc.at/ios-webapp-viewport-meta.orz</a>)</p> <p>content 参数:</p> <p>width viewport 宽度(数值/device-width)<br>height viewport 高度(数值/device-height)<br>initial-scale 初始缩放比例<br>maximum-scale 最大缩放比例<br>minimum-scale 最小缩放比例<br>user-scalable 是否允许用户缩放(yes/no)<br>minimal-ui iOS 7.1 beta 2 中新增属性,可以在页面加载时最小化上下状态栏。这是一个布尔值,可以直接这样写:</p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_4407')">复制内容到剪贴板</span> </div> <div id="code_4407"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"viewport"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"width=device-width, initial-scale=1, minimal-ui"</span><span class="tag">></span><span>  </span></span></li> </ol> </div> </div> <p>而如果你的网站不是响应式的,请不要使用 initial-scale 或者禁用缩放。</p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_8954')">复制内容到剪贴板</span> </div> <div id="code_8954"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"viewport"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"width=device-width,user-scalable=yes"</span><span class="tag">></span><span>  </span></span></li> </ol> </div> </div> <p>相关链接:<a target="_blank" href="http://www.qianduan.net/non-responsive-design-viewport.html">非响应式设计的viewport</a> <br><br>  适配 iPhone 6 和 iPhone 6plus 则需要写: <br><span class="lantxt"><br>XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_4250')">复制内容到剪贴板</span></p> <div class="codeText"> <div id="code_4250"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"viewport"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"width=375"</span><span class="tag">></span><span>  </span></span></li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"viewport"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"width=414"</span><span class="tag">></span><span>  </span> </li> </ol> </div> </div> <p>大部分 4.7~5 寸的安卓设备的 viewport 宽设为 360px,iPhone 6 上却是 375px,大部分 5.5 寸安卓机器(比如说三星 Note)的 viewport 宽为 400,iPhone 6 plus 上是 414px。 <br><br><strong>  ios 设备 <br><br></strong>  添加到主屏后的标题(iOS 6 新增) </p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_7738')">复制内容到剪贴板</span> </div> <div id="code_7738"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"apple-mobile-web-app-title"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"标题"</span><span class="tag">></span><span> </span><span class="comments"><!-- 添加到主屏后的标题(iOS 6 新增) --></span><span>  </span></span></li> </ol> </div> </div> <p><br>是否启用 WebApp 全屏模式</p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_5148')">复制内容到剪贴板</span> </div> <div id="code_5148"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"apple-mobile-web-app-capable"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"yes"</span><span> </span><span class="tag">/></span><span> </span><span class="comments"><!-- 是否启用 WebApp 全屏模式 --></span><span>  </span></span></li> </ol> </div> </div> <p>设置状态栏的背景颜色</p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_5979')">复制内容到剪贴板</span> </div> <div id="code_5979"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"apple-mobile-web-app-status-bar-style"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"black-translucent"</span><span> </span><span class="tag">/></span><span>    </span></span></li> <li> <span></span><span class="comments"><!-- 设置状态栏的背景颜色,只有在 `"apple-mobile-web-app-capable" content="yes"` 时生效 --></span><span>  </span> </li> </ol> </div> </div> <p>只有在 "apple-mobile-web-app-capable" content="yes" 时生效 <br><br>  content 参数: <br><br>default 默认值。 <br>black 状态栏背景是黑色。 <br>black-translucent 状态栏背景是黑色半透明。 如果设置为 default 或 black ,网页内容从状态栏底部开始。 如果设置为 black-translucent ,网页内容充满整个屏幕,顶部会被状态栏遮挡。 <br><br><strong>禁止数字识自动别为电话号码</strong></p> <div class="codeText"> <div class="codeHead"> <span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_3828')">复制内容到剪贴板</span> </div> <div id="code_3828"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"format-detection"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"telephone=no"</span><span> </span><span class="tag">/></span><span> </span><span class="comments"><!-- 禁止数字识自动别为电话号码 --></span><span>  </span></span></li> </ol> </div> </div> <p>iOS 图标</p> <p>  rel 参数: apple-touch-icon 图片自动处理成圆角和高光等效果。 apple-touch-icon-precomposed 禁止系统自动添加效果,直接显示设计原图。 iPhone 和 iTouch,默认 57x57 像素,必须有</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode60"> <br><link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png" /> <!-- iPhone 和 iTouch,默认 57x57 像素,必须有 --><br> </div> <p>  iPad,72x72 像素,可以没有,但推荐有</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode61"> <br><link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72x72-precomposed.png" /> <!-- iPad,72x72 像素,可以没有,但推荐有 --><br> </div> <p>  Retina iPhone 和 Retina iTouch,114x114 像素,可以没有,但推荐有</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode62"> <br><link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png" /> <!-- Retina iPhone 和 Retina iTouch,114x114 像素,可以没有,但推荐有 --><br> </div> <p>  Retina iPad,144x144 像素,可以没有,但推荐有</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode63"> <br><link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png" /> <!-- Retina iPad,144x144 像素,可以没有,但推荐有 --><br> </div> <p>  IOS 图标大小在iPhone 6 plus上是180×180,iPhone 6 是120x120。 适配iPhone 6 plus,则需要在中加上这段</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode64"> <br><link rel="apple-touch-icon-precomposed" sizes="180x180" href="retinahd_icon.png"><br> </div> <p><strong>iOS 启动画面<br><br></strong>官方文档:<a target="_blank" href="https://developer.apple.com/library/ios/qa/qa1686/_index.html">https://developer.apple.com/library/ios/qa/qa1686/_index.html</a> <br>参考文章:<a target="_blank" href="http://wxd.ctrip.com/blog/2013/09/ios7-hig-24/">http://wxd.ctrip.com/blog/2013/09/ios7-hig-24/</a> <br><br>iPad 的启动画面是不包括状态栏区域的。</p> <p>  iPad 竖屏 768 x 1004(标准分辨率)</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode65"> <br><link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png" /> <!-- iPad 竖屏 768 x 1004(标准分辨率) --><br> </div> <p>  iPad 竖屏 1536x2008(Retina)</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode66"> <br><link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png" /> <!-- iPad 竖屏 1536x2008(Retina) --><br> </div> <p>  iPad 横屏 1024x748(标准分辨率)</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode67"> <br><link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png" /> <!-- iPad 横屏 1024x748(标准分辨率) --><br> </div> <p>  iPad 横屏 2048x1496(Retina)</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode68"> <br><link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png" /> <!-- iPad 横屏 2048x1496(Retina) --><br> </div> <p>  iPhone 和 iPod touch 的启动画面是包含状态栏区域的。</p> <p>  iPhone/iPod Touch 竖屏 320x480 (标准分辨率)<br><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode69"> <br><link rel="apple-touch-startup-image" href="/splash-screen-320x480.png" /> <!-- iPhone/iPod Touch 竖屏 320x480 (标准分辨率) --><br> </div> <p>  iPhone/iPod Touch 竖屏 640x960 (Retina)</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode70"> <br><link rel="apple-touch-startup-image" sizes="640x960" href="/splash-screen-640x960.png" /> <!-- iPhone/iPod Touch 竖屏 640x960 (Retina) --><br> </div> <p>  iPhone 5/iPod Touch 5 竖屏 640x1136 (Retina)</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode71"> <br><link rel="apple-touch-startup-image" sizes="640x1136" href="/splash-screen-640x1136.png" /> <!-- iPhone 5/iPod Touch 5 竖屏 640x1136 (Retina) --><br> </div> <p>  添加智能 App 广告条 Smart App Banner(iOS 6+ Safari)</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode72"> <br><meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL"> <!-- 添加智能 App 广告条 Smart App Banner(iOS 6+ Safari) --><br> </div> <p>  iPhone 6对应的图片大小是750×1294,iPhone 6 Plus 对应的是1242×2148 。</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode73"> <br><link rel="apple-touch-startup-image" href="launch6.png" media="(device-width: 375px)"><br><link rel="apple-touch-startup-image" href="launch6plus.png" media="(device-width: 414px)"><br> </div> <p><strong>Windows 8<br></strong>  Windows 8 磁贴颜色</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode74"> <br><meta name="msapplication-TileColor" content="#000"/> <!-- Windows 8 磁贴颜色 --><br> </div> <p>  Windows 8 磁贴图标</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode75"> <br><meta name="msapplication-TileImage" content="icon.png"/> <!-- Windows 8 磁贴图标 --><br> </div> <p>  rss订阅</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode76"> <br><link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <!-- 添加 RSS 订阅 --><br> </div> <p>  favicon icon</p> <p><br></p> <div class="msgheader"> <div class="right"><span style="CURSOR: pointer" class="copybut"><u>复制代码</u></span></div>代码如下:</div> <div class="msgborder" id="phpcode77"> <br><link rel="shortcut icon" type="image/ico" href="/favicon.ico" /> <!-- 添加 favicon icon --><br> </div> <p>比较详细的 favicon 介绍可参考<a target="_blank" href="https://github.com/audreyr/favicon-cheat-sheet">https://github.com/audreyr/favicon-cheat-sheet<br></a><br><strong>移动端的meta <br><br></strong><span class="lantxt">XML/HTML Code</span><span style="CURSOR: pointer" class="copyCodeText" onclick="copyIdText('code_8641')">复制内容到剪贴板</span></p> <div class="codeText"> <div id="code_8641"> <ol class="dp-xml"> <li class="alt"><span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"viewport"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"width=device-width, initial-scale=1, user-scalable=no"</span><span> </span><span class="tag">/></span><span>  </span></span></li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"apple-mobile-web-app-capable"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"yes"</span><span> </span><span class="tag">/></span><span>  </span> </li> <li class="alt"> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"apple-mobile-web-app-status-bar-style"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"black"</span><span> </span><span class="tag">/></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>="format-detection"</span><span class="attribute-value">content</span><span>="</span><span class="attribute">telephone</span><span>=</span><span class="attribute-value">no</span><span>, </span><span class="attribute">email</span><span>=</span><span class="attribute-value">no</span><span>" </span><span class="tag">/></span><span>  </span> </li> <li class="alt"> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"viewport"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"width=device-width, initial-scale=1, user-scalable=no"</span><span> </span><span class="tag">/></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"apple-mobile-web-app-capable"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"yes"</span><span> </span><span class="tag">/></span><span class="comments"><!-- 删除苹果默认的工具栏和菜单栏 --></span><span>  </span> </li> <li class="alt"> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"apple-mobile-web-app-status-bar-style"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"black"</span><span> </span><span class="tag">/></span><span class="comments"><!-- 设置苹果工具栏颜色 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"format-detection"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"telphone=no, email=no"</span><span> </span><span class="tag">/></span><span class="comments"><!-- 忽略页面中的数字识别为电话,忽略email识别 --></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- 启用360浏览器的极速模式(webkit) --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"renderer"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"webkit"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- 避免IE使用兼容模式 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">http-equiv</span><span>=</span><span class="attribute-value">"X-UA-Compatible"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"IE=edge"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- 针对手持设备优化,主要是针对一些老的不识别viewport的浏览器,比如黑莓 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"HandheldFriendly"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"true"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- 微软的老式浏览器 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"MobileOptimized"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"320"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- uc强制竖屏 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"screen-orientation"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"portrait"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- QQ强制竖屏 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"x5-orientation"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"portrait"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- UC强制全屏 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"full-screen"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"yes"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- QQ强制全屏 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"x5-fullscreen"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"true"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- UC应用模式 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"browsermode"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"application"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- QQ应用模式 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"x5-page-mode"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"app"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- windows phone 点击无高光 --></span><span>  </span> </li> <li> <span></span><span class="tag"><</span><span class="tag-name">meta</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">"msapplication-tap-highlight"</span><span> </span><span class="attribute">content</span><span>=</span><span class="attribute-value">"no"</span><span class="tag">></span><span>  </span> </li> <li class="alt"> <span></span><span class="comments"><!-- 适应移动端end --></span><span>  </span> </li> </ol> </div> </div> <p><br>这是来自 <a href="http://weibo.com/toooobug" target="_blank">toobug</a> 的分享总结。</p> <p>  更多的 meta 标签参考</p> <ul> <li><a href="http://code.lancepollard.com/complete-list-of-html-meta-tags/" target="_blank">COMPLETE LIST OF HTML META TAGS</a></li> <li><a href="http://www.iacquire.com/blog/18-meta-tags-every-webpage-should-have-in-2013" target="_blank">18 Meta Tags Every Webpage Should Have in 2013</a></li> </ul> <p>  参考文章:</p> <ul> <li><a href="https://github.com/yisibl/blog/issues/1" target="_blank">常用的 HTML 头部标签</a></li> <li><a href="https://gist.github.com/paddingme/6182708733917ae36331" target="_blank">html5_header</a></li> <li><a href="http://amazeui.org/css/" target="_blank">amazeui css</a></li> <li><a href="http://www.douban.com/note/170560091/" target="_blank">DOCTYPE</a></li> <li><a href="http://www.uisdc.com/ios8-ten-new-feature" target="_blank">WEB 工程师和设计师必学的 10 个 IOS 8 新鲜改变</a></li> </ul> <div class="clearfix"> <span id="art_bot" class="jbTestPos"></span> </div> <p class="share"><b>转载:</b>感谢您对网站平台的认可,以及对我们原创作品以及文章的青睐, 非常欢迎各位朋友分享到个人站长或者朋友圈,但转载请说明文章出处。</p> <div class="nextinfo"> <p>上一篇:<a href="/fxInfo/610.html">Html Select 使用selected属性设置默认选择项纯html+css实现Element loading效果纯html+css实现奥运五环的示例代码HTML+CSS实现导航条下拉菜单的示例代码html+css实现滚动到元素位置显示加载动画效果纯html+css实现打字效果html+css实现环绕倒影加载特效html输入两个数实现加减乘除功能html中显示特殊符号(附带特殊字符对应表)关于html选择框创建占位符的问题html css3不拉伸图片显示效果</a></p> <p>下一篇:<a href="/fxInfo/612.html">在网页上调用桌面exe程序的简单方法纯html+css实现Element loading效果纯html+css实现奥运五环的示例代码HTML+CSS实现导航条下拉菜单的示例代码html+css实现滚动到元素位置显示加载动画效果纯html+css实现打字效果html+css实现环绕倒影加载特效html输入两个数实现加减乘除功能html中显示特殊符号(附带特殊字符对应表)关于html选择框创建占位符的问题html css3不拉伸图片显示效果</a></p> </div> </div> </div> </div> <!--lbox end--> <div class="rbox"> <div class="whitebg paihang"> <h2 class="htitle">点击排行</h2> <section class="topnews imgscale"> <a href="/fxInfo/228584.html"> <img src="//img.jbzj.com/file_images/game/201512/20151213103329111.png" onerror="javascript:this.src='/assets/index/image/moren.jpg';"> <span>CF12月版本猎鹰OP99怎么样_CF12月版本猎鹰OP99全面介绍_网络游戏_游戏攻略_</span> </a> </section> <ul> <li><i></i><a href="/fxInfo/228583.html">天谕玉虚PVP教学_对战各职业打法心得分享_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228582.html">CF12月新版本抢先看_CF12月新版本更新了什么内容_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228581.html">怪物猎人OL40级开放护石分解_喵喵异闻录全面介绍_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228580.html">上古世纪烹饪技能详解_烹饪食物种类全面介绍_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228579.html">天谕地狱剑冢光刃通关视频分享_地狱剑冢攻略推荐_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228578.html">枪神纪生化浩劫失落文明怎么打 生化浩劫失落文明困难炼狱打法攻略_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228577.html">FIFA Online3双12特惠福袋介绍_双12特惠福袋有哪些内容_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228576.html">枪神纪榴弹武器哪个好 枪神纪榴弹武器推荐分析_网络游戏_游戏攻略_</a></li> <li><i></i><a href="/fxInfo/228575.html">fifa online392曼联黄金巨星摇摇乐活动网址及奖励一览_网络游戏_游戏攻略_</a></li> </ul> </div> <div class="whitebg tuijian"> <h2 class="htitle">本栏推荐</h2> <section class="topnews imgscale"> <a href="/fxInfo/228584.html"> <img src="//img.jbzj.com/file_images/game/201512/20151213103329111.png" onerror="javascript:this.src='/assets/index/image/moren.jpg';"><span>CF12月版本猎鹰OP99怎么样_CF12月版本猎鹰OP99全面介绍_网络游戏_游戏攻略_</span></a> </section> <ul> <li> <a href="/fxInfo/228583.html"><i><img src="//img.jbzj.com/file_images/game/201512/20151213103623116.png" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>天谕玉虚PVP教学_对战各职业打法心得分享_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228582.html"><i><img src="//img.jbzj.com/file_images/game/201512/20151213104833121.png" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>CF12月新版本抢先看_CF12月新版本更新了什么内容_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228581.html"><i><img src="//img.jbzj.com/file_images/game/201512/20151213105408182.jpg" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>怪物猎人OL40级开放护石分解_喵喵异闻录全面介绍_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228580.html"><i><img src="//img.jbzj.com/file_images/game/201512/20151213105648183.png" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>上古世纪烹饪技能详解_烹饪食物种类全面介绍_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228579.html"><i><img src="" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>天谕地狱剑冢光刃通关视频分享_地狱剑冢攻略推荐_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228578.html"><i><img src="" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>枪神纪生化浩劫失落文明怎么打 生化浩劫失落文明困难炼狱打法攻略_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228577.html"><i><img src="//img.jbzj.com/file_images/game/201512/20151213110628196.jpg" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>FIFA Online3双12特惠福袋介绍_双12特惠福袋有哪些内容_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228576.html"><i><img src="//img.jbzj.com/file_images/game/201512/2015121311092324.jpg" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>枪神纪榴弹武器哪个好 枪神纪榴弹武器推荐分析_网络游戏_游戏攻略_</p> </a> </li> <li> <a href="/fxInfo/228575.html"><i><img src="//img.jbzj.com/file_images/game/201512/20151213111041202.jpg" onerror="javascript:this.src='/assets/index/image/moren.jpg';"></i> <p>fifa online392曼联黄金巨星摇摇乐活动网址及奖励一览_网络游戏_游戏攻略_</p> </a> </li> </ul> </div> </div> </article> <footer> <div class="box"> <div class="wxbox"> <ul> <li><img src="http://img.liuyifei.net/assets/index/blog/images/m.jpg"><span>我的微信</span></li> </ul> </div> <div class="endnav"> <p><b>站点声明:</b></p> <p>本站支持自己发布内容,并且自己对自己发布的内容负责,发布内容不合规用户,站长将禁用账号并且删除当前账号发布的所有内容</p> <p>备案号:<a href="https://beian.miit.gov.cn/" target="_blank">蜀ICP备20002119号-5</a> <a href="https://beian.miit.gov.cn/" target="_blank"> <img src="/assets/index/image/icp.png" width="10"> 川公网安备51010702002370号 </a>   注册用户:348 </p> <a href="http://www.91w.net/show/44860.html" target="_blank" title="采集程序" target="_blank" >采集程序</a> <a href="http://www.91w.net/show/47395.html" target="_blank" title="网站源码出售" target="_blank" >网站源码出售</a> <a href="http://www.91w.net/ym" target="_blank" title="老域名出售页面" target="_blank" >老域名出售页面</a> <a href="/xz" target="_blank" title="下载" target="_blank" >下载</a> <a href="/yx" target="_blank" title="游戏" target="_blank" >游戏</a> <a href="http://www.91w.net/sitemap" target="_blank" title="网站导航" target="_blank" >网站导航</a> <a href="http://www.91w.net/news" target="_blank" title="文章" target="_blank" >文章</a> <a href="http://www.91w.net/all" target="_blank" title="源码下载" target="_blank" >源码下载</a> <a href="http://www.91w.net/down" target="_blank" title="软件下载" target="_blank" >软件下载</a> <a href="http://www.91w.net/game" target="_blank" title="游戏下载" target="_blank" >游戏下载</a> <a href="http://www.91w.net/program" target="_blank" title="资料" target="_blank" >资料</a> <a href="http://www.91w.net/fx" target="_blank" title="资源分享" target="_blank" >资源分享</a> <a href = "http://www.sixgod.net/fxInfo/611.html" title="六神" target="_blank" >六神</a> <a href = "http://sixgod.net/fxInfo/611.html" title="六神" target="_blank" >六神</a> <a href = "http://haifeisi.net/fxInfo/611.html" title="海飞丝" target="_blank" >海飞丝</a> <a href = "http://www.haifeisi.net/fxInfo/611.html" title="海飞丝" target="_blank" >海飞丝</a> <a href = "http://flerken.cn/fxInfo/611.html" title="噬元兽" target="_blank" >噬元兽</a> <a href = "http://www.flerken.cn/fxInfo/611.html" title="噬元兽" target="_blank" >噬元兽</a> <a href = "http://bieha.cn/fxInfo/611.html" title="bieha.cn" target="_blank" >bieha.cn</a> <a href = "http://www.bieha.cn/fxInfo/611.html" title="www.bieha.cn" target="_blank" >www.bieha.cn</a> <a href = "http://miuti.cn/fxInfo/611.html" title="缪缇(Miuti)内衣" target="_blank" >缪缇(Miuti)内衣</a> <a href = "http://www.miuti.cn/fxInfo/611.html" title="缪缇(Miuti)内衣" target="_blank" >缪缇(Miuti)内衣</a> <a href = "http://dk028.com/fxInfo/611.html" title="dk028.com" target="_blank" >dk028.com</a> <a href = "http://www.dk028.com/fxInfo/611.html" title="www.dk028.com" target="_blank" >www.dk028.com</a> <a href = "http://scflcp.cn/fxInfo/611.html" title="四川福利" target="_blank" >四川福利</a> <a href = "http://www.scflcp.cn/fxInfo/611.html" title="四川福利" target="_blank" >四川福利</a> <a href = "http://bzbl.cn/fxInfo/611.html" title="bzbl.cn" target="_blank" >bzbl.cn</a> <a href = "http://www.bzbl.cn/fxInfo/611.html" title="www.bzbl.cn" target="_blank" >www.bzbl.cn</a> <a href = "http://mlft.cn/fxInfo/611.html" title="mlft.cn" target="_blank" >mlft.cn</a> <a href = "http://www.mlft.cn/fxInfo/611.html" title="www.mlft.cn" target="_blank" >www.mlft.cn</a> <a href = "http://7zz.net/fxInfo/611.html" title="7zz压缩" target="_blank" >7zz压缩</a> <a href = "http://www.7zz.net/fxInfo/611.html" title="7zz压缩" target="_blank" >7zz压缩</a> <a href = "http://91w.net/fxInfo/611.html" title="91大神" target="_blank" >91大神</a> <a href = "http://www.91w.net/fxInfo/611.html" title="91大神" target="_blank" >91大神</a> <a href = "http://liuyifei.net/fxInfo/611.html" title="刘亦菲" target="_blank" >刘亦菲</a> <a href = "http://www.liuyifei.net/fxInfo/611.html" title="刘亦菲" target="_blank" >刘亦菲</a> <a href = "http://sewai.cn/fxInfo/611.html" title="sewai.cn" target="_blank" >sewai.cn</a> <a href = "http://www.sewai.cn/fxInfo/611.html" title="www.sewai.cn" target="_blank" >www.sewai.cn</a> <a href = "http://58t.net/fxInfo/611.html" title="58同城" target="_blank" >58同城</a> <a href = "http://www.58t.net/fxInfo/611.html" title="58同城" target="_blank" >58同城</a> <a href = "http://yamiao.net/fxInfo/611.html" title="鸭苗" target="_blank" >鸭苗</a> <a href = "http://www.yamiao.net/fxInfo/611.html" title="鸭苗" target="_blank" >鸭苗</a> <a href = "http://caclrc.cn/fxInfo/611.html" title="caclrc.cn" target="_blank" >caclrc.cn</a> <a href = "http://rgbbs.cn/fxInfo/611.html" title="rgbbs.cn" target="_blank" >rgbbs.cn</a> <a href = "http://heiapp.net/fxInfo/611.html" title="heiapp.net" target="_blank" >heiapp.net</a> <a href = "http://zhfjx.cn/fxInfo/611.html" title="zhfjx.cn" target="_blank" >zhfjx.cn</a> <a href = "http://sshfy.cn/fxInfo/611.html" title="sshfy.cn" target="_blank" >sshfy.cn</a> <a href = "http://sxdgc.cn/fxInfo/611.html" title="sxdgc.cn" target="_blank" >sxdgc.cn</a> <a href = "http://28city.cn/fxInfo/611.html" title="28city.cn" target="_blank" >28city.cn</a> <a href = "http://www.caclrc.cn/fxInfo/611.html" title="www.caclrc.cn" target="_blank" >www.caclrc.cn</a> <a href = "http://www.rgbbs.cn/fxInfo/611.html" title="www.rgbbs.cn" target="_blank" >www.rgbbs.cn</a> <a href = "http://www.heiapp.net/fxInfo/611.html" title="www.heiapp.net" target="_blank" >www.heiapp.net</a> <a href = "http://www.zhfjx.cn/fxInfo/611.html" title="www.zhfjx.cn" target="_blank" >www.zhfjx.cn</a> <a href = "http://www.sshfy.cn/fxInfo/611.html" title="www.sshfy.cn" target="_blank" >www.sshfy.cn</a> <a href = "http://www.28city.cn/fxInfo/611.html" title="www.28city.cn" target="_blank" >www.28city.cn</a> <a href = "http://etcb.cn/fxInfo/611.html" title="etc吧" target="_blank" >etc吧</a> <a href = "http://www.etcb.cn/fxInfo/611.html" title="etc吧" target="_blank" >etc吧</a> <a href = "http://abdayah.cn/fxInfo/611.html" title="abdayah.cn" target="_blank" >abdayah.cn</a> <a href = "http://www.abdayah.cn/fxInfo/611.html" title="www.abdayah.cn" target="_blank" >www.abdayah.cn</a> <a href = "http://ddbdzs.cn/fxInfo/611.html" title="ddbdzs.cn" target="_blank" >ddbdzs.cn</a> <a href = "http://www.ddbdzs.cn/fxInfo/611.html" title="www.ddbdzs.cn" target="_blank" >www.ddbdzs.cn</a> <a href = "http://hyflex.cn/fxInfo/611.html" title="安思尔HyFlex" target="_blank" >安思尔HyFlex</a> <a href = "http://www.hyflex.cn/fxInfo/611.html" title="安思尔HyFlex" target="_blank" >安思尔HyFlex</a> <a href = "http://studyart.cn/fxInfo/611.html" title="studyart.cn" target="_blank" >studyart.cn</a> <a href = "http://www.studyart.cn/fxInfo/611.html" title="www.studyart.cn" target="_blank" >www.studyart.cn</a> <a href = "http://dndf.cn/fxInfo/611.html" title="dndf.cn" target="_blank" >dndf.cn</a> <a href = "http://www.dndf.cn/fxInfo/611.html" title="www.dndf.cn" target="_blank" >www.dndf.cn</a> <a href = "http://www.sxdgc.cn/fxInfo/611.html" title="www.sxdgc.cn" target="_blank" >www.sxdgc.cn</a> <a href = "http://11855.cn/fxInfo/611.html" title="11855.cn" target="_blank" >11855.cn</a> <a href = "http://www.11855.cn/fxInfo/611.html" title="www.11855.cn" target="_blank" >www.11855.cn</a> <a href = "http://11566.cn/fxInfo/611.html" title="11566.cn" target="_blank" >11566.cn</a> <a href = "http://www.11566.cn/fxInfo/611.html" title="www.11566.cn" target="_blank" >www.11566.cn</a> <a href = "http://11355.cn/fxInfo/611.html" title="11355.cn" target="_blank" >11355.cn</a> <a href = "http://www.11355.cn/fxInfo/611.html" title="www.11355.cn" target="_blank" >www.11355.cn</a> <a href = "http://62622.cn/fxInfo/611.html" title="62622.cn" target="_blank" >62622.cn</a> <a href = "http://www.62622.cn/fxInfo/611.html" title="www.62622.cn" target="_blank" >www.62622.cn</a> <a href = "http://cbwq.cn/fxInfo/611.html" title="cbwq.cn" target="_blank" >cbwq.cn</a> <a href = "http://www.cbwq.cn/fxInfo/611.html" title="www.cbwq.cn" target="_blank" >www.cbwq.cn</a> <a href = "http://www.zrqm.cn/fxInfo/611.html" title="www.zrqm.cn" target="_blank" >www.zrqm.cn</a> <a href = "http://zrqm.cn/fxInfo/611.html" title="zrqm.cn" target="_blank" >zrqm.cn</a> <a href = "http://rlfm.cn/fxInfo/611.html" title="rlfm.cn" target="_blank" >rlfm.cn</a> <a href = "http://www.rlfm.cn/fxInfo/611.html" title="www.rlfm.cn" target="_blank" >www.rlfm.cn</a> <a href = "http://www.pbtb.cn/fxInfo/611.html" title="www.pbtb.cn" target="_blank" >www.pbtb.cn</a> <a href = "http://pbtb.cn/fxInfo/611.html" title="pbtb.cn" target="_blank" >pbtb.cn</a> <a href = "http://knlz.cn/fxInfo/611.html" title="knlz.cn" target="_blank" >knlz.cn</a> <a href = "http://www.knlz.cn/fxInfo/611.html" title="www.knlz.cn" target="_blank" >www.knlz.cn</a> <a href = "http://rhwf.cn/fxInfo/611.html" title="rhwf.cn" target="_blank" >rhwf.cn</a> <a href = "http://www.rhwf.cn/fxInfo/611.html" title="www.rhwf.cn" target="_blank" >www.rhwf.cn</a> <a href = "http://dxfp.cn/fxInfo/611.html" title="dxfp.cn" target="_blank" >dxfp.cn</a> <a href = "http://www.dxfp.cn/fxInfo/611.html" title="www.dxfp.cn" target="_blank" >www.dxfp.cn</a> <a href = "http://rptb.cn/fxInfo/611.html" title="rptb.cn" target="_blank" >rptb.cn</a> <a href = "http://www.rptb.cn/fxInfo/611.html" title="www.rptb.cn" target="_blank" >www.rptb.cn</a> <a href = "http://nzjg.cn/fxInfo/611.html" title="nzjg.cn" target="_blank" >nzjg.cn</a> <a href = "http://www.nzjg.cn/fxInfo/611.html" title="www.nzjg.cn" target="_blank" >www.nzjg.cn</a> <a href = "http://ygnl.cn/fxInfo/611.html" title="ygnl.cn" target="_blank" >ygnl.cn</a> <a href = "http://www.ygnl.cn/fxInfo/611.html" title="www.ygnl.cn" target="_blank" >www.ygnl.cn</a> <a href = "http://rxbg.cn/fxInfo/611.html" title="人心不古" target="_blank" >人心不古</a> <a href = "http://www.rxbg.cn/fxInfo/611.html" title="人心不古" target="_blank" >人心不古</a> <a href = "http://rfbc.cn/fxInfo/611.html" title="rfbc.cn" target="_blank" >rfbc.cn</a> <a href = "http://www.rfbc.cn/fxInfo/611.html" title="www.rfbc.cn" target="_blank" >www.rfbc.cn</a> <a href = "http://rwbs.cn/fxInfo/611.html" title="rwbs.cn" target="_blank" >rwbs.cn</a> <a href = "http://www.rwbs.cn/fxInfo/611.html" title="www.rwbs.cn" target="_blank" >www.rwbs.cn</a> <a href = "http://music.liuyifei.net/fxInfo/611.html" title="" target="_blank" ></a> <a href = "http://img.liuyifei.net/fxInfo/611.html" title="img.liuyifei.net" target="_blank" >img.liuyifei.net</a> <a href = "http://drnu.cn/fxInfo/611.html" title="drnu.cn" target="_blank" >drnu.cn</a> <a href = "http://www.drnu.cn/fxInfo/611.html" title="www.drnu.cn" target="_blank" >www.drnu.cn</a> <a href = "http://bwsu.cn/fxInfo/611.html" title="bwsu.cn" target="_blank" >bwsu.cn</a> <a href = "http://www.bwsu.cn/fxInfo/611.html" title="www.bwsu.cn" target="_blank" >www.bwsu.cn</a> <a href = "http://wyim.cn/fxInfo/611.html" title="wyim.cn" target="_blank" >wyim.cn</a> <a href = "http://www.wyim.cn/fxInfo/611.html" title="www.wyim.cn" target="_blank" >www.wyim.cn</a> <a href = "http://dtud.cn/fxInfo/611.html" title="dtud.cn" target="_blank" >dtud.cn</a> <a href = "http://www.dtud.cn/fxInfo/611.html" title="www.dtud.cn" target="_blank" >www.dtud.cn</a> <a href = "http://dvtg.cn/fxInfo/611.html" title="远东运输集团" target="_blank" >远东运输集团</a> <a href = "http://www.dvtg.cn/fxInfo/611.html" title="远东运输集团" target="_blank" >远东运输集团</a> <a href = "http://fvhc.cn/fxInfo/611.html" title="中宠兽医联盟" target="_blank" >中宠兽医联盟</a> <a href = "http://www.fvhc.cn/fxInfo/611.html" title="中宠兽医联盟" target="_blank" >中宠兽医联盟</a> <a href = "http://lble.cn/fxInfo/611.html" title="拉贝洛尔" target="_blank" >拉贝洛尔</a> <a href = "http://www.lble.cn/fxInfo/611.html" title="拉贝洛尔" target="_blank" >拉贝洛尔</a> <a href = "http://mvhu.cn/fxInfo/611.html" title="飞行悍马" target="_blank" >飞行悍马</a> <a href = "http://www.mvhu.cn/fxInfo/611.html" title="飞行悍马" target="_blank" >飞行悍马</a> <a href = "http://uesese.cn/fxInfo/611.html" title="uesese.cn" target="_blank" >uesese.cn</a> <a href = "http://www.uesese.cn/fxInfo/611.html" title="www.uesese.cn" target="_blank" >www.uesese.cn</a> <a href = "http://ikuns.cc/fxInfo/611.html" title="爱坤" target="_blank" >爱坤</a> <a href = "http://www.ikuns.cc/fxInfo/611.html" title="爱坤" target="_blank" >爱坤</a> <a href = "http://02613.cn/fxInfo/611.html" title="02613.cn" target="_blank" >02613.cn</a> <a href = "http://www.02613.cn/fxInfo/611.html" title="www.02613.cn" target="_blank" >www.02613.cn</a> <a href = "http://lymzi.cn/fxInfo/611.html" title="lymzi.cn" target="_blank" >lymzi.cn</a> <a href = "http://www.lymzi.cn/fxInfo/611.html" title="www.lymzi.cn" target="_blank" >www.lymzi.cn</a> <a href = "http://ktoa.cn/fxInfo/611.html" title="KTOA" target="_blank" >KTOA</a> <a href = "http://www.ktoa.cn/fxInfo/611.html" title="KTOA" target="_blank" >KTOA</a> <a href = "http://73216.cn/fxInfo/611.html" title="73216.cn" target="_blank" >73216.cn</a> <a href = "http://www.73216.cn/fxInfo/611.html" title="www.73216.cn" target="_blank" >www.73216.cn</a> <a href = "http://www.crtwd.cn/fxInfo/611.html" title="www.crtwd.cn" target="_blank" >www.crtwd.cn</a> <a href = "http://crtwd.cn/fxInfo/611.html" title="crtwd.cn" target="_blank" >crtwd.cn</a> <a href = "http://szmdx.cn/fxInfo/611.html" title=" 深圳麦迪逊" target="_blank" > 深圳麦迪逊</a> <a href = "http://www.szmdx.cn/fxInfo/611.html" title=" 深圳麦迪逊" target="_blank" > 深圳麦迪逊</a> <a href = "http://kylkc.cn/fxInfo/611.html" title="kylkc.cn" target="_blank" >kylkc.cn</a> <a href = "http://www.kylkc.cn/fxInfo/611.html" title="www.kylkc.cn" target="_blank" >www.kylkc.cn</a> <a href = "http://dztmd.cn/fxInfo/611.html" title="dztmd.cn" target="_blank" >dztmd.cn</a> <a href = "http://www.dztmd.cn/fxInfo/611.html" title="www.dztmd.cn" target="_blank" >www.dztmd.cn</a> <a href = "http://pmhlw.cn/fxInfo/611.html" title="pmhlw.cn" target="_blank" >pmhlw.cn</a> <a href = "http://www.pmhlw.cn/fxInfo/611.html" title="www.pmhlw.cn" target="_blank" >www.pmhlw.cn</a> <a href = "http://gfxtk.cn/fxInfo/611.html" title="gfxtk.cn" target="_blank" >gfxtk.cn</a> <a href = "http://www.gfxtk.cn/fxInfo/611.html" title="www.gfxtk.cn" target="_blank" >www.gfxtk.cn</a> <a href = "http://tzpc.cn/fxInfo/611.html" title="桃子坪村" target="_blank" >桃子坪村</a> <a href = "http://www.tzpc.cn/fxInfo/611.html" title="桃子坪村" target="_blank" >桃子坪村</a> <a href = "http://jbqm.cn/fxInfo/611.html" title="京泊汽模" target="_blank" >京泊汽模</a> <a href = "http://www.jbqm.cn/fxInfo/611.html" title="京泊汽模" target="_blank" >京泊汽模</a> <a href = "http://sh3.cn/fxInfo/611.html" title="sh3.cn" target="_blank" >sh3.cn</a> <a href = "http://www.sh3.cn/fxInfo/611.html" title="www.sh3.cn" target="_blank" >www.sh3.cn</a> <a href = "http://7sh.cn/fxInfo/611.html" title="7sh.cn" target="_blank" >7sh.cn</a> <a href = "http://www.7sh.cn/fxInfo/611.html" title="www.7sh.cn" target="_blank" >www.7sh.cn</a> <a href = "http://95596.net/fxInfo/611.html" title="民生人寿" target="_blank" >民生人寿</a> <a href = "http://www.95596.net/fxInfo/611.html" title="民生人寿" target="_blank" >民生人寿</a> <a href = "http://95540.net/fxInfo/611.html" title="安华农业保险" target="_blank" >安华农业保险</a> <a href = "http://www.95540.net/fxInfo/611.html" title="安华农业保险" target="_blank" >安华农业保险</a> <a href = "http://12383.net/fxInfo/611.html" title="华夏基违规操作举报电话" target="_blank" >华夏基违规操作举报电话</a> <a href = "http://www.12383.net/fxInfo/611.html" title="华夏基违规操作举报电话" target="_blank" >华夏基违规操作举报电话</a> <a href = "http://12363.net/fxInfo/611.html" title="金融消费权益保护投诉咨询电话" target="_blank" >金融消费权益保护投诉咨询电话</a> <a href = "http://www.12363.net/fxInfo/611.html" title="金融消费权益保护投诉咨询电话" target="_blank" >金融消费权益保护投诉咨询电话</a> <a href = "http://boboji.net/fxInfo/611.html" title="钵钵鸡" target="_blank" >钵钵鸡</a> <a href = "http://www.boboji.net/fxInfo/611.html" title="钵钵鸡" target="_blank" >钵钵鸡</a> <a href = "http://r515.cn/fxInfo/611.html" title="r515.cn" target="_blank" >r515.cn</a> <a href = "http://www.r515.cn/fxInfo/611.html" title="www.r515.cn" target="_blank" >www.r515.cn</a> <a href = "http://g2050.cn/fxInfo/611.html" title="g2050.cn" target="_blank" >g2050.cn</a> <a href = "http://www.g2050.cn/fxInfo/611.html" title="www.g2050.cn" target="_blank" >www.g2050.cn</a> <a href = "http://bbc888.com/fxInfo/611.html" title="bbc888.com" target="_blank" >bbc888.com</a> <a href = "http://www.bbc888.com/fxInfo/611.html" title="www.bbc888.com" target="_blank" >www.bbc888.com</a> <a href = "http://blog.sewai.cn/" title="博客" target="_blank" >博客</a> </div> </div> <a href="#"> <div class="top"></div> </a> </footer> <style type="text/css"> #zfbhb { background: none; width: 200px; position: fixed; left: 5px; bottom: 200px; z-index: 10000 !important; } #zfbhb img { width: 200px; z-index: 10000 !important; } #zfbhb a { width: 200px; text-align: center; background: red; z-index: 10000; height: 50px; font-size: 50px; font-weight: bold; line-height: 50px; color: #FFFFFF; border-radius: 5px; } #zfbhb1 { background-color: aliceblue; width: 150px; position: fixed; right: 5px; bottom: 40px; z-index: 10000 !important; } #zfbhb1 img { width: 150px; margin-top: 10px; height: 80px; z-index: 10000 !important; } @media screen and (min-width: 1px) and (max-width: 1023px) { #zfbhb { width: 100px !important; z-index: 10000 !important; background: none; } #zfbhb img { width: 100px; } #zfbhb a { width: 100px; text-align: center; background: red; z-index: 10000; height: 50px; font-size: 25px; font-weight: bold; line-height: 50px; color: #FFFFFF; border-radius: 5px; } #zfbhb1 { background-color: aliceblue; width: 80px; position: fixed; right: 5px; bottom: 30px; z-index: 10000 !important; } #zfbhb1 img { width: 80px; margin-top: 10px; height: 30px; z-index: 10000 !important; } } </style> <div id="zfbhb"> <img src="http://img.liuyifei.net/assets/index/image/zfbhb.png" alt=""> <div style="height: 20px;"></div> <a href="/publish">发布内容</a> </div> <div id="zfbhb1"> <a href="#" target="_blank"> <img src="http://img.liuyifei.net/assets/index/image/ad.gif" alt="-六神源码网"/> </a> <a href="http://91w.net/mp3" target="_blank"> <img src="http://img.liuyifei.net/uploads/20211209/7e87601e3ced53378f90e9d6000bb6e2.png" onerror="javascript:this.src='http://img.liuyifei.net/assets/index/image/ad.gif';"></a> </div> <script src="/assets/index/js/tongji.js"></script> </body> </html>