How to generate sitemap for your website?

Generating Sitemap is very important for your website. Instead of writing each link by hand, use the below sites to generate the sitemap easily and quickly.

What is a sitemap?
sitemap is a file where you provide information about the website pages, videos, and other files on your website, and the relationships between them. Search engines read this file to more intelligently crawl your site. The filename is usually sitemap.xml and it should reside in the root of your website.

See a sample of our sitemap at http://www.fastbikri.com/sitemap.xml

Example:

Filename: sitemap.xml
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
   <url>
      <loc>http://www.fastbikri.com/</loc>
      <changefreq>daily</changefreq>
      <priority>1.00</priority>
   </url>
   <url>
      <loc>http://www.fastbikri.com/post-ad</loc>
      <changefreq>daily</changefreq>
      <priority>0.85</priority>
   </url>
</urlset>