我有一个网页,它是免费应用程序的下载页面(http://dragonfli.es)。由于极简主义设计,此页面几乎没有文字。我想知道HTML元标记是否可以对搜索引擎优化提供帮助,还是我必须在其中添加一些文本?
答案 0 :(得分:3)
你肯定要放文字。搜索引擎会读取元标记,但它们通常用于欺骗网站的内容(考虑内容镜像,虚假下载网站等)
SEO考虑的真正价值是文本及其语义(如<h1>
,链接等)。 URL也很重要:尝试优化其可读性。
答案 1 :(得分:2)
在您的页面中,您有许多空的元素:
<div class="window">
<div class="image_reel" style = "border: 1px #707070 solid; ">
<a href="#"><img src="reel_1.png" alt="" /></a>
<a href="#"><img src="reel_2.png" alt="" /></a>
<a href="#"><img src="reel_3.png" alt="" /></a>
<a href="#"><img src="reel_4.png" alt="" /></a>
</div>
</div>
<div class="paging">
<a href="#" rel="1">1</a>
<a href="#" rel="2">2</a>
<a href="#" rel="3">3</a>
<a href="#" rel="4">4</a>
</div>
比拥有体面的网页描述更重要的是在您的<a>
代码中包含内容,并使用alt属性并合理描述图片。
通常在这样的页面中,我有以下内容:
<强> HTML:强>
<div id="frontImage">
Here is some descriptive text which goes over
the contents of this page, and which pertains
to the image background I'll be using.
</div>
<强> CSS:强>
#frontImage
{
position: relative;
display: block;
width: 400px; /* the width of the bg image */
height: 400px; /* the height of the bg image */
background-image: url(/img/someImage.png);
background-repeat: no-repeat;
text-indent: -999em; /* move the descriptive text off the screen */
}
这将允许您在页面上显示文本并将该文本转换为大多数人将看到的图像。只需确保您使用的文本实际上适用于与其关联的内容。
答案 2 :(得分:1)
元标记只会做很多事情。谷歌几乎完全无视关键字元标签。你最好的选择是拥有一个好的URL,好的页面标题,好的h1标签和一些相关的文本。尝试替换头部而不是图像的图像替换。
答案 3 :(得分:1)
添加更具描述性的标题。想想可能对您的应用感兴趣的人会寻找并尝试在您的标题中使用该查询字符串。它必须相当短,但具有描述性。
而不是使用图像徽标,使其成为文本徽标。 “最简单,最快...... TODO列表”作为一个图像毫无意义。它应该是一个文本元素。如果您真的坚持使用图像,至少使用相同的文本添加alt属性。 请注册Google网站站长工具。