Difference between revisions of "Learn/An-HTML-Sitemap-Helps-Search-Engines-Discover-You"

(Roll to)
Line 1: Line 1:
{{ListKeeprBox
 
| ListKeepr = KristinaWeis
 
| Name = Kristina Weis
 
| Image = Image:KristinaMongoose.png
 
| Header = Creating%20a%20Simple%20Sitemap
 
| Subhead = Creating a simple HTML sitemap
 
| Bitly = http://bit.ly/HTMLSitemap
 
}}
 
 
<big>The purpose of a sitemap -- also written as "site map' -- is to help search engine spiders and crawlers find and index all the pages on a website, and faster than they might be able to do without a sitemap.</big>
 
 
Indexing is important because if a page on a website hasn't been indexed by a search engine, it cannot show up for any search query in that search engine.
 
 
A sitemap is particularly helpful to websites that have:
 
* Pages that aren't linked from more prominent pages on the site
 
* Lots of pages
 
* Pages that aren't showing up in search engines -- but you want them to
 
* Pages linked from pages that search engines can't index because they are rendered in Flash or another technology that effectively hides information from search engines
 
 
 
{{ListKeeprBox
 
{{ListKeeprBox
 
| ListKeepr = KristinaWeis
 
| ListKeepr = KristinaWeis
Line 39: Line 20:
 
==Types of Sitemaps==
 
==Types of Sitemaps==
 
<div style="float:right; margin-left:1em;"><YouTube>hi5DGOu1uA0</YouTube></div>
 
<div style="float:right; margin-left:1em;"><YouTube>hi5DGOu1uA0</YouTube></div>
The simplest type is an '''HTML sitemap''' created in the same manner as any other web page. You have probably seen a link to this kind of sitemap at the bottom of the page on many websites.
+
The simplest kind is an '''HTML sitemap''', that is just like another web page. You have probably seen these on some sites, as a "sitemap" link in the footer. An HTML sitemap is as simple to create as any other page on your website, so it doesn't require special tools or skills.  Unlike the other types of sitemaps, it doesn't require additional steps like submitting it to search engines.
 
 
An HTML sitemap is as simple to create as any other page on your website, so it doesn't require special tools or skills.  Unlike the other types of sitemaps, it doesn't require additional steps like submitting it to search engines.
 
  
 
HTML sitemaps work well for smaller sites, with less than about 100 pages. If your site has more than 100 pages, if you don't want a "sitemap" link, or if you'd like to try something more complicated, consider these '''other sitemap options''':
 
HTML sitemaps work well for smaller sites, with less than about 100 pages. If your site has more than 100 pages, if you don't want a "sitemap" link, or if you'd like to try something more complicated, consider these '''other sitemap options''':
Line 52: Line 31:
 
To the right is a video of Matt Cutts (of [[Google]]) discussing why HTML and [[Complex Sitemap|XML sitemaps]] are both helpful.  He suggests that if you could only do one type, to do an HTML sitemap because it's helpful for search engine spiders ''and'' people.
 
To the right is a video of Matt Cutts (of [[Google]]) discussing why HTML and [[Complex Sitemap|XML sitemaps]] are both helpful.  He suggests that if you could only do one type, to do an HTML sitemap because it's helpful for search engine spiders ''and'' people.
  
== Hogyan hozzunk létre egy HTML Sitemap ==
+
==How to Create an HTML Sitemap==
Akkor valószínűleg ugyanazt a módszert használja , hogy hozza létre a HTML sitemap úgy, mint bármely más oldalon .
+
You can likely use the same method to create your HTML sitemap as you would for any other page.
 
 
Itt van egy ötlet , amit egy egyszerű oldaltérkép HTML kódot nézhet ki :
 
<pre> <h1> Oldaltérkép < / h1 >
 
<ul>
 
  <li> <a href="http://www.yourwebsite.com/"> Home < / a > < / li >
 
  <li> <a href="http://www.yourwebsite.com/products"> Termékek < / a > < / li >
 
  <li> <a href="http://www.yourwebsite.com/gizmos"> Gadgets < / a > < / li >
 
  <li> <a href="http://www.yourwebsite.com/gadets"> Gadgets < / a > < / li >
 
  <li> <a href="http://www.yourwebsite.com/about"> Rólunk < / a > < / li >
 
  <li> <a href="http://www.yourwebsite.com/contact"> Kapcsolat < / a > < / li >
 
  < / ul > < / pre>
 
 
 
Ha ez nem olyan dolog , amit tehetünk egy saját , vannak [ http://code.google.com/p/sitemap-generators/wiki/SitemapGenerators sitemap generátorok ], amely nem a munka az Ön számára .
 
 
 
Miután létrehozta a HTML sitemap van szüksége , hogy tartalmaz egy linket , hogy az Ön weboldalán , lehetőleg a része a honlap navigációs - mint a foci - , illetve a honlapján . Nélkül ezt a lépést , nem fog semmilyen előnyt .
 
 
 
==Tips==
 
*Unlike other types of sitemaps, an HTML sitemap is a link that some people may click and look at.  Make it useful for them by grouping pages together in logical categories, so that it can help some people find what they're looking for on your website.
 
 
 
==Points of Order==
 
* Sitemaps are purely supplementary. Web pages not listed in a sitemap can still be found and indexed other ways, such as through links. Nevertheless, a sitemap is a good tool for increasing the likelihood that pages will be indexed.
 
* Creating and submitting a sitemap does not guarantee that search engines will choose to index all the pages in it. A sitemap can help them find the pages, but engines will index pages only if their algorithms determine the content is valuable for searchers.
 
* A sitemap does not help you rank higher in search engine results. But it may help you get more pages on your site indexed and showing up faster in search results. For a new site, or one that doesn't yet have a lot of links pointing to it, that's a big benefit.
 
 
 
==Additional Resources==
 
* [http://googlewebmastercentral.blogspot.com/2008/01/sitemaps-faqs.html Sitemap FAQs] from Google
 
* [[Wikipedia:Site_map|Wikipedia article about sitemaps]]
 
* [http://www.searchenginejournal.com/html-sitemaps/15360/ "The Importance of HTML Sitemaps"] from [[SearchEngineJournal.com]]
 
 
 
 
 
<big>'''See [[Learn|more articles]] like this one.'''</big>
 
 
 
__NOTOC__
 
 
 
== Hogyan hozzunk létre egy HTML Sitemap ==
 
Akkor valószínűleg ugyanazt a módszert használja , hogy hozza létre a HTML sitemap úgy, mint bármely más oldalon .
 
  
Itt van egy ötlet , amit egy egyszerű oldaltérkép HTML kódot nézhet ki :
+
Here's an idea of what a simple sitemap's HTML code might look like:
<pre> <h1> Oldaltérkép < / h1 >
+
<pre><h1>Sitemap</h1>
 
<ul>
 
<ul>
   <li> <a href="http://www.yourwebsite.com/"> Home < / a > < / li >
+
  <li><a href="http://www.yourwebsite.com/">Home</a></li>
   <li> <a href="http://www.yourwebsite.com/products"> Termékek < / a > < / li >
+
  <li><a href="http://www.yourwebsite.com/products">Products</a></li>
   <li> <a href="http://www.yourwebsite.com/gizmos"> Gadgets < / a > < / li >
+
  <li><a href="http://www.yourwebsite.com/gizmos">Gizmos</a></li>
   <li> <a href="http://www.yourwebsite.com/gadets"> Gadgets < / a > < / li >
+
  <li><a href="http://www.yourwebsite.com/gadets">Gadgets</a></li>
   <li> <a href="http://www.yourwebsite.com/about"> Rólunk < / a > < / li >
+
  <li><a href="http://www.yourwebsite.com/about">About Us</a></li>
   <li> <a href="http://www.yourwebsite.com/contact"> Kapcsolat < / a > < / li >
+
  <li><a href="http://www.yourwebsite.com/contact">Contact</a></li>
   < / ul > < / pre>
+
  </ul></pre>
  
Ha ez nem olyan dolog , amit tehetünk egy saját , vannak [ http://code.google.com/p/sitemap-generators/wiki/SitemapGenerators sitemap generátorok ], amely nem a munka az Ön számára .
+
If this isn't something that you can do one your own, there are [http://code.google.com/p/sitemap-generators/wiki/SitemapGenerators sitemap generators] that can do the work for you.
  
Miután létrehozta a HTML sitemap van szüksége , hogy tartalmaz egy linket , hogy az Ön weboldalán , lehetőleg a része a honlap navigációs - mint a foci - , illetve a honlapján . Nélkül ezt a lépést , nem fog semmilyen előnyt .
+
Once you've created your HTML sitemap you need to include a link to it on your website, preferably from part of your website's navigation -- like the footer -- or on your homepage. Without this step, it won't provide any benefit.
  
 
==Tips==
 
==Tips==

Revision as of 17:03, 26 July 2010

KristinaMongoose.png
Creating a simple HTML sitemap          RetweetIconSmall.png FacebookShareIcon2.png    GoogleBuzzIcon.png
By Kristina Weis
email or post a comment for me


The purpose of a sitemap -- also written as "site map' -- is to help search engine spiders and crawlers find and index all the pages on a website, and faster than they might be able to do without a sitemap.

Indexing is important because if a page on a website hasn't been indexed by a search engine, it cannot show up for any search query in that search engine.

A sitemap is particularly helpful to websites that have:

  • Pages that aren't linked from more prominent pages on the site
  • Lots of pages
  • Pages that aren't showing up in search engines -- but you want them to
  • Pages linked from pages that search engines can't index because they are rendered in Flash or another technology that effectively hides information from search engines

Types of Sitemaps

The simplest kind is an HTML sitemap, that is just like another web page. You have probably seen these on some sites, as a "sitemap" link in the footer. An HTML sitemap is as simple to create as any other page on your website, so it doesn't require special tools or skills. Unlike the other types of sitemaps, it doesn't require additional steps like submitting it to search engines.

HTML sitemaps work well for smaller sites, with less than about 100 pages. If your site has more than 100 pages, if you don't want a "sitemap" link, or if you'd like to try something more complicated, consider these other sitemap options:

For more information on these sitemap options click here. Note that with these options you will need to submit or specify the sitemap in order for it to do any good.

To the right is a video of Matt Cutts (of Google) discussing why HTML and XML sitemaps are both helpful. He suggests that if you could only do one type, to do an HTML sitemap because it's helpful for search engine spiders and people.

How to Create an HTML Sitemap

You can likely use the same method to create your HTML sitemap as you would for any other page.

Here's an idea of what a simple sitemap's HTML code might look like:

<h1>Sitemap</h1>
<ul>
   <li><a href="http://www.yourwebsite.com/">Home</a></li>
   <li><a href="http://www.yourwebsite.com/products">Products</a></li>
   <li><a href="http://www.yourwebsite.com/gizmos">Gizmos</a></li>
   <li><a href="http://www.yourwebsite.com/gadets">Gadgets</a></li>
   <li><a href="http://www.yourwebsite.com/about">About Us</a></li>
   <li><a href="http://www.yourwebsite.com/contact">Contact</a></li>
   </ul>

If this isn't something that you can do one your own, there are sitemap generators that can do the work for you.

Once you've created your HTML sitemap you need to include a link to it on your website, preferably from part of your website's navigation -- like the footer -- or on your homepage. Without this step, it won't provide any benefit.

Tips

  • Unlike other types of sitemaps, an HTML sitemap is a link that some people may click and look at. Make it useful for them by grouping pages together in logical categories, so that it can help some people find what they're looking for on your website.

Points of Order

  • Sitemaps are purely supplementary. Web pages not listed in a sitemap can still be found and indexed other ways, such as through links. Nevertheless, a sitemap is a good tool for increasing the likelihood that pages will be indexed.
  • Creating and submitting a sitemap does not guarantee that search engines will choose to index all the pages in it. A sitemap can help them find the pages, but engines will index pages only if their algorithms determine the content is valuable for searchers.
  • A sitemap does not help you rank higher in search engine results. But it may help you get more pages on your site indexed and showing up faster in search results. For a new site, or one that doesn't yet have a lot of links pointing to it, that's a big benefit.

Additional Resources


See more articles like this one.

Retrieved from "http://aboutus.com/index.php?title=Learn/An-HTML-Sitemap-Helps-Search-Engines-Discover-You&oldid=20562015"