不支援框架的搜索引擎会如老的浏览器一样解读
<noframes> 标记中的东西,如果该一首页 没有采用
Meta 标记的话,你的网页在搜索引擎中的描述便是
<noframes> 中的文字,
例如: Sorry! You need a frames-browser to
view this page.
而且就算你的网页有几百页,它都只记下这一页,你当然不愿意吧,当然利用
Meta 标记
可以解决一部分的问题,但有些搜索引擎并不支持
Meta 标记,它还是喜欢到网页内容中 搜索,所以
<noframes>标记的正确使用便显得重要了。
正确的做法是在 <noframes> 标记中放入:
- <body>
标记。这是搜索引擎和浏览器所需要的。
- 标题。
- 200 个字元以上的网页描述。
- 一个链接到其它的链接,好让搜索引擎搜索下去。
例如:
<noframes>
<body>
<h1>Penpal Garden - Free Penfriendship service</h1>
We provide free international pen friendship service, bringing people
with similar interests together. Thousands of penpal member come from
all around the world. If you want to make friends on net you sure come
to the right place.
<p><a href="index2.html">Go to the non-frame
version</a>
</body>
</noframes>