usabilidade
 




usabilidade > problemas técnicos > "searchability"

http://dms.tpi.com.br/contract/step2.html?contractId=11111113&new-submit=Continuar



Problemas técnicos

Severidade: [2 extremo] [4 alto] [3 médio] [2 baixo] [1 muito baixo]


4 :: "searchability": [2]

No keywords
The inclusion of keywords in a meta tag is likely to improve the chances of people finding your site in a search engine.
The Problem
When listing or rating a web site, many search engines include the keyword list in calculations that determine when a site is listed, and what rating it will be given. If you wish to maximize your exposure through search engines, you need to include sensible keywords.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Ozone</title>
</head>
<body>
<h1>Ozone</h1>
<p>This page is all about ozone.</p>
</body>
</html>
The Fix
The standard way to add keywords is within a meta tag, in the head section of the document.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Ozone</title>
<meta name="keywords" content="ozone, o3, oxygen, atmosphere, UV, CFC">
</head>
<body>
<h1>Ozone</h1>
<p>This page is all about ozone.</p>
</body>
</html>
Further information
http://www.w3.org/TR/html4/struct/global.html#h-7.4.4
Information on using the meta tag in HTML 4, generally applicable to other versions of HTML, including XHTML.
http://www.excite.com/info/getting_listed/meta_tags/
Meta tags and their use on the Excite search engine.
Exceptions
If your web site is not intended to be listed in a search engine (for example, some intranet sites) then you can safely disable this advice.




No description


The inclusion of a description in a meta tag is likely to improve the chances of people viewing your site after finding it in a search engine.
The Problem
When listing a web site in response to a user's search, many search engines display the description from the meta tag. If well-worded, this description will help convince a user to visit this page instead of the ones listed above and below it.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Ozone</title>
</head>
<body>
<h1>Ozone</h1>
<p>This page is all about ozone.</p>
</body>
</html>
The Fix
The standard way to add a description is within a meta tag, in the head section of the document.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Ozone</title>
<meta name="description" content="Learn all there is to know about ozone">
</head>
<body>
<h1>Ozone</h1>
<p>This page is all about ozone.</p>
</body>
</html>
Further information
http://www.w3.org/TR/html4/struct/global.html#h-7.4.4
Information on using the meta tag in HTML 4, generally applicable to other versions of HTML, including XHTML.
http://www.excite.com/info/getting_listed/meta_tags/
Meta tags and their use on the Excite search engine.
Exceptions
If your web site is not intended to be listed in a search engine (for example, some intranet sites) then you can safely disable this advice.






[ problemas técnicos ]