Friday, November 7, 2008

Good Site Map Contain Some Importent point

  • The site map should be the simplest page on your web site.
  • Do not give a fancy name to the site map link such as "Web Site Tree" - keep it as "Site map", this way your visitors understand immediately what you mean.
  • You should always avoid "dynamic" site maps. Those in which the visitors have to "work" their way to get hold of information. Remember, the reason visitors comes to a site map page is because they are lost. To make them work again for something that you can display as a simple static link will just kill the purpose of having a site map.
  • If the site map is list of text links, be sure to use the TITLE attribute of the anchor tag and include keywords inside it.
  • It is a good idea to put a sentence describing the page contents below the link for that page on a site map.
  • A site map should not be the primary navigation on your web site it should complement it.
  • A link to the site map page is very important and all pages should carry this link. The site map link can be included with other links in the main menu on your web site or placed at a section on the web page from which is it clearly visible.
  • Other important aspects on a web site should complement site maps. For example, for visited links should be different color from that of non-visited links so that visitors understand which pages they have already seen and thus, save time.

Thursday, November 6, 2008

Site Map in SEO

Site Map are Easy way for webmasters to inform the search engines like Google,Yahoo,MSN etc about Webpages on their websites that are available for crawling.

A Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL so that search engines can more intelligently crawl the site.The Search engine crawlers usually discover web pages from links within the site and also other sites.the site map create the branches of all the linkpage on website.it help the search engine to crawling the webpage.use of site map crawler easily reach the every page of the website.

Sitemaps supplement this data to allow crawlers that support Sitemaps to pick up all URLs in the Sitemap and learn about those URLs using the associated metadata. Using the Sitemap protocol does not guarantee that web pages are included in search engines, but provides hints for web crawlers to do a better job of crawling your site.

Site maps and site indexes fall into the same issues.Building and maintaining a site map or site index is, just like on-site Search.Site maps help users navigate through a Web site that has more than one page by showing the user a diagram of the entire site's contents. Similar to a book's table of contents, the site map makes it easier for a user to find information on a site without having to navigate through the site's many pages.

I still recommend site maps because they're the only feature that gives users a true overview of everything on a site. One could argue that a site's navigation serves the same purpose. For example, some navigation offers drop-down menus that let users see the options available in each site section. But even with these menus, users can see only one section of content at a time.

For creation of site map  online use the xml sitemap and sitemappro

Tuesday, November 4, 2008

RSS Feed: Show Different Type Of Information

1.Blogs Feed: Many blogs are catalogued in an RSS feed, with each blog entry summarized as a feed item. This makes it easy for visitors to scan blog posts for items of interest.


2.Article Feed: Articles are often placed into feeds to alert readers when new articles and content are available. The feed entry is typically an article summary or introduction. Readers can then ascertain if the article is of interest and read further.

3.Forum Feed: Many forums now have add-ons that allow participants to receive forum posts via RSS. The RSS feeds often will show the latest discussion topics; if users are interested they simply click to enter the forum to participate in the discussion. As the topic is updated they will see new entries in the RSS feed.

4.Schedule Feed: Schools, clubs and organizations will often use feeds to communicate meeting times, places and events that might be occurring. The RSS feeds are often used to publicize events, notify the community of schedule changes or meeting agendas.

5.Discounts / Specials Feed: Retail and online stores have begun using RSS feeds to deliver their latest specials and discounted offers. Some online retailers have taken this a step further, allowing users to create their own feeds based on keywords or phrases.

6.Industry-Specific RSS Feed Uses Include:Technical professionals in specific industries have also developed RSS feeds as way to market, promote or communicate within their specific industries. In many cases, this has expanded their reach and increased communication with current and prospective customers and clients.

RSS feeds can be used by realtors to communicate the time and location for open houses, announce new property listings or promote decreased mortgage rates. Content feeds can also be used by universities to communicate sports scores or event schedules. Computer service professionals can create feeds to notify clients of potential security breaches, virus risks or outbreaks. Ultimately, RSS is molded to meet the communication needs of many sectors. Consider how RSS can benefit your business and supplement your communication needs. 

Article source: http://www.rss-specifications.com/creating-rss-feeds.htm


RSS Feed::Warning and Remember

1. If you create the file using Dreamweaver or a similar tool becareful that it does not strip out tags it feels are redundant. In order to be be an RSS feed your file needs at bare minimum that tags that were discussed above, and the file will not be valid if tags are stripped out.

2.check your work! Once your file is complete and uploaded einter it into the feed validator.

Syndication / Submission:

If you've made it this far you are in good shape it is time to "syndicate" your content! Submit your RSS feed (the xml file you created) to sites just like you would submit a web page. Some of the more popular sites that accept RSS files can be found under "Post RSS Feed".

RSS Feed::How To Create

Everyday more and more websites, news services and blogs are adding RSS content. RSS is a method of syndicating content.The concept of aggregating content in one central location or repository is very appealing. Consumers have become tired of push technology, RSS allows users the flexibility to regain control of their content. RSS feed creators provide content without forcing it on consumers. In fact with RSS consumers are able to choose the content they wish to view.

RSS feeds contain what are referred to as "items". The items are usually connected in some way and contain a common theme or other similarity.

Each item contains:

* title
* description
* link

The title and description should be written to describe the content and the link should reference the webpage that contains that actual content.

Like html, the xml file uses open and close tags to designate the title, description and link. Tags are enclosed in brackets <>, like standard html and the close tag contains a forward slash /.
FeedForAll - will easily create feeds for you!

The following is what an item in a xml file looks like:

title : The Title Goes Here /title
descritpion: The description goes here /description
link :http://www.linkgoeshere.com /link

As I mentioned earlier, an RSS feeds contains items and like the tags above, an open and close tag is used to distinguish between items.

item
title:The Title Goes Here /title
descritpion: The description goes here /description
link : http://www.linkgoeshere.com /link
/item

item:
title: Another Title Goes Here /title
descritpion: Another description goes here /description
link: http://www.anotherlinkgoeshere.com /link
/item

Now an RSS Feed is a series of items, these items are chained together to create what is called a "Channel".

The Channel appears at the top of the file and tells people how the items relate to each other. Like items channels use title, description and link tags to describe its content. The open channel tag occurs before the first item and the close tag /channel: occurs after the last item.

channel:
title: The Channel Title Goes Here /title
description: The explanation of how the items are related goes here /description
link: http://www.directoryoflinksgohere /link

item:
title: The Title Goes Here /title
descritpion:The description goes here /description
link:http://www.linkgoeshere.com /link
/item

item
title: Another Title Goes Here /title
descritpion :Another description goes here /description
link:http://www.anotherlinkgoeshere.com /link
/item

/channel:

Finally you will need to designate the file by indicating it is an XML file by inserting xml and rss defining tags at the beginning and at the very end.

?xml version="1.0"?
rss version="2.0"
channel

title: The Channel Title Goes Here /title
description: The explanation of how the items are related goes here /description
link:http://www.directoryoflinksgohere /link

item:
title: The Title Goes Here /title
descritpion: The description goes here /description
link : http://www.linkgoeshere.com /link
/item

item :
title: Another Title Goes Here /title
descritpion: Another description goes here /description
link: http://www.anotherlinkgoeshere.com /link
/item

/channel
/rss

When you save the file be sure to save it as an xml file.
Article source: http://www.rss-specifications.com/creating-rss-feeds.htm

What is RSS ? Why and How used it.

RSS is a Technology or Web feed formats used for publish curretly new updated works – like blog content posing, news headlines, audio, and video in a standardized format.RSS stands for ‘Really Simple Syndication’(RSS 2.0) also ‘news feed’.The meaning of 'feed' is simply rss documents.The format of RSS is XML and file extension is .rss or.xml.


RSS is a defined standard based on XML with the specific purpose of delivering updates to web-based content. Using this standard, webmasters provide headlines and fresh content in a succinct manner. Meanwhile, consumers use RSS readers and news aggregators to collect and monitor their favorite feeds in one centralized program or location. Content viewed in the RSS reader or news aggregator is place known as an RSS feed.The RSS can be read by the software feed reader and rss reader.the logo of rss feed is orang square contain small boll blow two arch.