ads

Best Online Sitemap Generators List


Best Online Sitemap Generators List
Sitemap is a most important part of any website or blog. A Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site, so that search engines can more intelligently crawl the site. Sitemap makes any website more SEO friendly and helps to index on search engines easily and also helps the visitors to find out the contents on the website. Here are some list of best online sitemap generator tools along with their descriptions, you can use up them to create, place on your website or blog and to submit on search engines like Google, Yahoo, Bing, Ask, AOL etc




List of Online Sitemap Generators 




1. xml-sitemaps.comIt is one of the best online sitemap generator tool. It provides free as well as paid or pro service for sitemap creation. By using a free service maximum 500 pages will be indexed in sitemap. Along with XML sitemap, you can create text and HTML sitemaps for the list of webpage on your website.

2. web-site-map.com: It is best free to use online sitemap generator tool. You can index up to 3500+ pages on sitemap file. After generating XML sitemap, you can validate by using W3C Markup Validation Service. If you want the free tool for sitemap generation I recommended this site.

3. sitemapdoc.com: Sitemapdoc.com is the another site for generating different formats of sitemaps. You can create XML sitemap, Text sitemap, HTML sitemap and RSS feed. You can check for the image and check website for viruses using AVG, Norton, McAfee, Google etc.

4. addme.comHere you can generate the sitemap with providing your website URL, Frequency, Priority, Last date modified, Name and Email address. After generating sitemap it will be emailed to you on the given email address.

5. freesitemapgenerator.comBy using this tool you can index up to 5000 pages on sitemap. After successfully generating the XML sitemap, can download the compressed folder. To generate sitemap you have to create an account first.

6. auditmypc.comIt is also the free tool to generate XML sitemaps. You can provide different filters, rules and options while generating sitemap files. You can include or exclude URLs and contents as filter.

7. xmlsitemapgenerator.orgUsing this tool you can easily create HTML, RSS and XML Sitemaps online for free. Sitemap generated by this tool is Compatible with major search engines including Google and Bing. Sitemaps tell search engines when and how often pages are updated, and their relative importance.

8. sitemaps-builder.com:  Using this free tool for generating sitemap maximum 1000 pages will be indexed at the Site. After successfully generated you have to download the sitemap file at results page and upload it to the root directory your website.

9. sitemapxml.netAfter Simply entering your website URL, selecting the frequency of website change and providing the last modified date, this free tool generates sitemaps in XML, ROR and TEXT format that can be instantly submitted to Search engines such as Google, Yahoo and MSN.

10. xsitemap.comAfter just providing website URL, Last modified date, Change frequency and Priority, XML sitemap can be created after few minutes. After successfully generated you have to download the sitemap file and upload it to the root directory your website.






How to Display Date Format in JavaScript?


How to Display Date Format in JavaScript?You can display different date format using Date object in JavaScript for your webpage or web application.The different date format may be year only (YYYY), year and month (YYYY-MM), complete date (YYYY-MM-DD), complete day with day name (YYYY-MM-DD DayName) and date with different time format. Different methods are available in date object to manipulate date in JavaScript. The Date object automatically hold the current date and time as its initial value. You can extract Year, Month, Day along with Hours, Minutes and Seconds from it. Here I have given very simple codes for printing different date formats, you can use respective codes for displaying that format of date on your web page.



JavaScript Date Format YYYY (year only)


<script type="text/javascript">
function displayDate(){
var now = new Date();
var year=now.getFullYear();
date.innerHTML=year
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year only. i.e. 2014


JavaScript Date Format YYYY-MM or MM-YYYY (year and month) 


<script type="text/javascript">
function displayDate(){
var now = new Date();
var month=now.getMonth();
var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";
var year=now.getFullYear(); 
date.innerHTML=monthName[month]+", "+year
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year and Month. i.e. February, 2014

JavaScript Date Format YYYY-MM-DD (complete date)


<script type="text/javascript">
function displayDate(){
var now = new Date();
var today=now.getDate();
var month=now.getMonth();
var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";
var year=now.getFullYear();
var day=now.getDay();
date.innerHTML=monthName[month]+today+ ", "+year
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year, Month and Day. i.e. February21, 2014


JavaScript Date Format YYYY-MM-DD-DayName (date with day name)


<script type="text/javascript">
function displayDate(){
var now = new Date();
var today=now.getDate();
var month=now.getMonth();
var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";
var year=now.getFullYear();
var day=now.getDay();
var dayName=new Array(7)
dayName[0]="Sunday";
dayName[1]="MOnday";
dayName[2]="Tuesday";
dayName[3]="Wednesday";
dayName[4]="Thrusday";
dayName[5]="Friday";
dayName[6]="Saturday";
date.innerHTML=monthName[month]+today+ ", "+year+" "+dayName[day]
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year, Month and Day with Day Name. i.e. February21, 2014 Friday

JavaScript Date Format YYYY-MM-DD hh:mm (date with hour and minute)


<script type="text/javascript">
function displayDate(){

var now = new Date();
var today=now.getDate();
var month=now.getMonth();
var h=now.getHours()
var m=now.getMinutes()
var s=now.getSeconds()

m=checkTime(m)
s=checkTime(s)

var monthName=new Array(12)
monthName[0]="January";
monthName[1]="February";
monthName[2]="March";
monthName[3]="April";
monthName[4]="May";
monthName[5]="June";
monthName[6]="July";
monthName[7]="August";
monthName[8]="September";
monthName[9]="October";
monthName[10]="November";
monthName[11]="December";

var year=now.getFullYear();
var day=now.getDay();

var dayName=new Array(7)
dayName[0]="Sunday";
dayName[1]="MOnday";
dayName[2]="Tuesday";
dayName[3]="Wednesday";
dayName[4]="Thrusday";
dayName[5]="Friday";
dayName[6]="Saturday";

date.innerHTML=monthName[month]+today+ ", "+year+" "+h+":"+m
}
function checkTime(i)
{
if (i<10)
{ i="0" + i}
return i
}
window.onload=displayDate;
</script>
<div id="date"></div>

It prints Year, Month and Day with Hour and Minute. i.e. February21, 2014 9:18

To include other time formats refer to the previous post: How to Create a Digital Clock in JavaScript?


Related Posts