<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>世界杯网页版_世界杯(中国)官方在线登录-HTML &#8211; Wang</title><meta name="keywords" content="世界杯网页版_世界杯(中国)官方在线登录" /><meta name="description" content="世界杯网页版_世界杯(中国)官方在线登录（股票代码：002821）1999年搞合成、16年A股反应。小分子CDMO成建制接单，全球重磅商业化阶段药物中间体包产到底。世界杯网页版_世界杯(中国)官方在线登录当前总现市值约780亿元，麻精药品定点生产龙头，管制类麻醉药国内市场壁垒极高，以行政准入与专业学术推广构筑不可复制的护城河。世界杯网页版_世界杯(中国)官方在线登录深耕眼科药物与给药装置，推进双特异抗体及植入微球，持续强化眼底与干眼症治疗壁垒，守护视力健康。世界杯网页版_世界杯(中国)官方在线登录公司主营骨科植入与运动医学修复，推进3D打印多孔金属、生物固定界面和带袢钢板，让患者恢复快如初，重塑运动生命。" />
	<atom:link href="/blog/?feed=rss2&#038;tag=html" rel="self" type="application/rss+xml" />
	<link>/blog</link>
	<description>生命最快乐时,就是与你分享时!</description>
	<lastBuildDate>Sat, 29 Mar 2014 13:22:08 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.9.26</generator>
	<item>
		<title>世界杯网页版_世界杯(中国)官方在线登录-META标签使用</title><meta name="keywords" content="世界杯网页版_世界杯(中国)官方在线登录" /><meta name="description" content="世界杯网页版_世界杯(中国)官方在线登录（股票代码：002821）1999年搞合成、16年A股反应。小分子CDMO成建制接单，全球重磅商业化阶段药物中间体包产到底。世界杯网页版_世界杯(中国)官方在线登录当前总现市值约780亿元，麻精药品定点生产龙头，管制类麻醉药国内市场壁垒极高，以行政准入与专业学术推广构筑不可复制的护城河。世界杯网页版_世界杯(中国)官方在线登录深耕眼科药物与给药装置，推进双特异抗体及植入微球，持续强化眼底与干眼症治疗壁垒，守护视力健康。世界杯网页版_世界杯(中国)官方在线登录公司主营骨科植入与运动医学修复，推进3D打印多孔金属、生物固定界面和带袢钢板，让患者恢复快如初，重塑运动生命。" />
		<link>/blog/?p=57</link>
		<comments>/blog/?p=57#respond</comments>
		<pubDate>Wed, 11 Oct 2006 01:32:43 +0000</pubDate>
		<dc:creator><![CDATA[Wang]]></dc:creator>
				<category><![CDATA[Web Vision]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[META]]></category>

		<guid isPermaLink="false">http://META标签，是HTML语言head区的一个辅助性标签。在几乎所有的page里，我们都可以看到类似下面这段html代码：[html]-----------------------------------------------meta%20http-equiv=Content-Type%20content=text/html;%20charset=gb2312%20/-----------------------------------------------%5B/html%5D!</guid>
		<description><![CDATA[META标签，是HTML语言head区的一个辅助性标签。在几乎所有的page里，我们都可以看到类似下面这段ht [&#8230;... ]]></description>
				<content:encoded><![CDATA[<p>META标签，是HTML语言head区的一个辅助性标签。在几乎所有的page里，我们都可以看到类似下面这段html代码：</p>
<pre class="brush: html">
-----------------------------------------------

&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot; /&gt;

-----------------------------------------------
</pre>
<p><span id="more-57"></span><br />
这就是meta标签的典型运用。meta标签有多少参数，有什么作用，为什么我们要特别重视它呢？让我们一起来发掘meta标签的奥妙!</p>
<p>根据HTML语言标准注释：meta标签是对网站发展非常重要的标签，它可以用于鉴别作者，设定页面格式，标注内容提要和关键字，以及刷新页面等等。</p>
<p>meta标签分两大部分：HTTP-EQUIV和NAME变量。</p>
<p>●HTTP-EQUIV类似于HTTP的头部协议，它回应给浏览器一些有用的信息，以帮助正确和精确地显示网页内容。常用的HTTP-EQUIV类型有：</p>
<p>1.expires(期限)<br />
说明：可以用于设定网页的到期时间。一旦网页过期，必须到服务器上重新调阅。<br />
用法：</p>
<pre class="brush: html">&lt;meta http-equiv=&quot;expires&quot; content=&quot;Wed, 26 Feb 1997 08:21:57 GMT&quot; /&gt;</pre>
<p>注意：必须使用GMT的时间格式。</p>
<p>2.Pragma(cach模式)<br />
说明：禁止浏览器从本地机的缓存中调阅页面内容。<br />
用法：</p>
<pre class="brush: html">&lt;meta http-equiv=&quot;Pragma&quot; content=&quot;no-cache&quot; /&gt;</pre>
<p>注意：这样设定，访问者将无法脱机浏览。</p>
<p>3.Refresh(刷新)<br />
说明：需要定时让网页自动链接到其它网页的话，就用这句了。<br />
用法：</p>
<pre class="brush: html">&lt;meta http-equiv=&quot;Refresh&quot; content=&quot;5;URL=http://www.***.com&quot; /&gt;</pre>
<p>注意：其中的5是指停留5秒钟后自动刷新到URL网址。</p>
<p>4.Set-Cookie(cookie设定)<br />
说明：如果网页过期，那么存盘的cookie将被删除。<br />
用法：</p>
<pre class="brush: html">&lt;meta http-equiv=&quot;Set-Cookie&quot; content=&quot;cookievalue=xxx;&amp;lt;br /&amp;gt; expires=Wednesday, 21-Oct-98 16:14:21 GMT; path=/&quot; /&gt;/[html]
注意：必须使用GMT的时间格式。

5.Window-target(显示窗口的设定)
说明：强制页面在当前窗口以独立页面显示。
用法：[html]&lt;meta http-equiv=&quot;Window-target&quot; content=&quot;_top&quot; /&gt;</pre>
<p>注意：用来防止别人在框架里调用你的页面。</p>
<p>5.Content-Type(显示字符集的设定)<br />
说明：设定页面使用的字符集。(我们在前面字体设计中已经介绍过它的作用)<br />
用法：</p>
<pre class="brush: html">&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot; /&gt;</pre>
<p>●meat标签的NAME变量语法格式是：</p>
<pre class="brush: html">&lt;meta name=&quot;xxx&quot; content=&quot;xxxxxxxxxxxxxxxxxx&quot; /&gt;</pre>
<p>其中xxx主要有下面几种参数：</p>
<p>1.Keywords(关键字)<br />
说明：keywords用来告诉搜索引擎你网页的关键字是什么。<br />
举例：</p>
<pre class="brush: html">&lt;meta name=&quot;keywords&quot; content=&quot;life, universe, mankind, plants,&amp;lt;br /&amp;gt; relationships, the meaning of life, science&quot; /&gt;</pre>
<p>2.description(简介)<br />
说明：description用来告诉搜索引擎你的网站主要内容。<br />
举例：</p>
<pre class="brush: html">&lt;meta name=&quot;description&quot; content=&quot;This page is about the meaning of&amp;lt;br /&amp;gt; life, the universe, mankind and plants.&quot; /&gt;</pre>
<p>3.robots(机器人向导)<br />
说明：robots用来告诉搜索机器人哪些页面需要索引，哪些页面不需要索引。<br />
CONTENT的参数有all,none,index,noindex,follow,nofollow。默认是all。<br />
举例：</p>
<pre class="brush: html">&lt;meta name=&quot;robots&quot; content=&quot;none&quot; /&gt;</pre>
<p>4.author(作者)<br />
说明：标注网页的作者<br />
举例：</p>
<pre class="brush: html">&lt;meta name=&quot;AUTHOR&quot; content=&quot;ajie,ajie@netease.com&quot; /&gt;</pre>
<p>以上是meta标签的一些基本用法，其中最重要的就是:Keywords和description的设定。</p>
<p>为什么呢？道理很简单，这两个语句可以让搜索引擎能准确的发现你，吸引更多的人访问你的站点!</p>
<p>根据现在流行搜索引擎(Lycos，AltaVista等)的工作原理,搜索引擎首先派出机器人自动在www上搜索，当发现新的网站时，便检索页面中的keywords和decription，并将其加入到自己的数据库，然后再根据关键词的密度将网站排序。</p>
<p>也就是说：<br />
1. 如果你的页面中根本没有Keywords和description的meta标签，那么机器人是无法将你的站点加入数据库，网友也就不可能搜索到你的站点。</p>
<p>2. 如果你的关键字选的不好，关键字的密度不高，被排列在几十甚至几百万个站点的后面被点击的可能性也是非常小的。</p>
<p>所以,我们必须记住添加keywords和description的meta标签，并尽可能写好关键字和简介。写keywords的禁忌是：<br />
1.不要用常见词汇。例如www,homepage,net,web等。<br />
2.不要用形容词，副词。例如最好的，最大的等。<br />
3.不要用笼统的词汇，要尽量精确。例如不用&#8221;摩托罗拉手机&#8221;,改用&#8221;V998&#8243;等</p>
<p>寻找合适的关键词的一个技巧是：到lycos,Alta,infoseek等搜索引擎，搜索与你内容相仿的网站，查看排名前十位的网站的meta关键字，copy下来用到自己的站点上。</p>
<p>这里，我们举一段微软多媒体网站的关键字供你参考：</p>
<pre class="brush: html">&lt;meta name=&quot;keywords&quot; content=&quot;joke, music, MP3, media, audio,&amp;lt;br /&amp;gt; joke of the day, downloads, free music, horoscope, radio, video,&amp;lt;br /&amp;gt; music downloads, movies, radio station, media player, free,&amp;lt;br /&amp;gt; download, weather, horoscopes, windows media technologies,&amp;lt;br /&amp;gt; online, radio station guide, free download&quot; /&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>/blog/?feed=rss2&#038;p=57</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
