Total Pageviews

SEO Checklist


1.       Social icons:
Suggestion: Need to create Social Accounts and linked with social profiles.  

2.       W3C Validation:
Suggestion: Need to solve all the possible errors.
Helpful Urls: http://squizlabs.github.com/HTML_CodeSniffer/
http://validator.w3.org/ 

3.       Title, Meta Description & Meta Keywords Tag:
Suggestion: All Pages should contain high quality Title and Meta Tags according to targeted.
1. Title (Limit 70 Chracters)
2. Description (Limit 250 Characters)
1. 10 Keywords (Limit 150 Chracters)
2. URL, Domain Name
3. Content
4. Proximity, Phrases, Synonyms
Important Instructions: For dynamic sites, you can add title to every url, and title to every paragraph. Also should give alt name to every image based on your keywords. 

4.       Heading Tags:
Suggestion: Website should contain proper Heading Tags for the headings of the website. 

5.       Content Optimization:
Suggestion: Content of all the pages of website should be of high quality, unique, descriptive and keyword rich. 

6.       Internal Linking:
Suggestion: Internal Linking of the website should be very good and user friendly. 

7.       Alt Attribute:
Suggestion: Need to use keyword optimized Description in Alt attributes of all images. 2. Width & Height Attributes

8.       Google Analytics:
Suggestion: Need to Place Proper code of Google Analytics just before </head> tag of the website. 

9.       Webmaster Tools:
Suggestion: Need to set up Webmaster Tools for the website.

10.   404 (page not found) Page: 

Suggestion: Need to set up a well optimized 404 page not found error page.  Also should be able to differentiate and manage  404 error page and Result not found page separately.

11.   HTML Sitemap:
Suggestion: Need to set up a well optimized HTML Sitemap. 

12.   XML Sitemap:
Suggestion: Need to create a XML sitemap and declare it in robots.txt file. 

13.   Robots.txt:
Suggestion: Need to create a “robots.txt” text file and upload it on the root of the website with all the links which don’t want to be crawled and List the path of the XML sitemap in robots.txt file. 

14. Language Declaration:
Suggestion: Need to declare in the <HTML> tag of the website. 

15.   Index, Follow Tag:
Suggestion: Need to declare index, follow Tag in the head section of the website. 

16.   Footer:
Suggestion: Footer should be well optimized with the important links of the website

17.   Blog:
Suggestion: Need to setup a blog and it should be updated with fresh content frequently.

18.   Geo Meta Tag:
Suggestion: Need to declare Geo Meta Tag in the of head section the website. 

19.   Privacy:
Suggestion: Need to create a privacy policy page and linked it in Main Menu or Footer Menu of the Website. 

20.   Phone and Address on Home Page:
Suggestion: Phone, Address and Contact information should be declared in text on the home page of the website. 

21. Copyscape:
Suggestion: Many pages of the website are detected as copy content and which can be checked on http://copyscape.com/.  

22.   Speed: Need To Fix Some Points
Suggestion: Make the speed of your website fast. Provide website visitors with a better web surfing experience.
https://developers.google.com/speed/pagespeed/insights  

23.   Rel=”author”:
Suggestion: If the site has an author then Website should contain the <link> tag connected to Google plus account of author of the website. 

24.   Broken Links: Some Warning’s Detected
Suggestion: Need to solve all the Errors.

         Website Should Have Catchy Look and Well designed.
1.       Can Take Reference of the following:
i)      http://www.libertyfoxtech.com/- Presentation, images, testimonials
ii)     Attractive Tag line representing our company should be properly place at top.
iii)    http://www.pnnsoft.com/index.html?gclid=CLfpoO7OtbQCFQ2znQodMmUA2A - mention services properly and highlighting, hyperlinks for each service that each service should have its own page link.
iv)   http://www.wildnettechnologies.com/web-development-services.htm- Highlight properly Call to actions "Request for Proposal" or whatever it is.
v)    http://www.mediaseocompany.com/contact-us.html - Good presentation of call to actions "Call us Now", "Contact Now", "100% Satisfaction Guaranteed".
         Website should have high quality, unique, descriptive and keyword rich content in all the pages.
         Website should have unique pages for all the specific topics. 

25.   Redirect: 301 Redirect, 404 redirect

26.   HTML Compress Code (Gzip)
http://htmlcompressor.com/compressor.html

27. Important Instructions: External CSS, Internal Javascript- no script tag

28. Clear Call to action button

29.   Tracking & Analyzing Tools:
1. Google Analytics
2. Google Webmasters
3. Page Speed/ Yslow/ websiteoptimization
4. Lynx

30. W3C Validation
HTML/ CSS
Heading Tags: H1, H2, H3, H4, H5, H6

31. Page Analysis
 Page load time
Broken Links
Heavy Images
Flash

32.  Change competitive word to keyword like Category to Cuisine. 

32. Add static pages for dynamic results

Add social networking sites



http://www.dreamtemplate.com/dreamcodes/documentation/social_networking.html

Create An RSS Feed For Your Site

RSS feeds for your content are very important these days. A large number of people stay updated using RSS readers which pull in updates from the sites subscribed. In addition, RSS feeds can be used in a number of ways to promote your content using social media.
An RSS feed for your site is essentially an XML file. You must adhere to a specific format for the XML file (as we shall see) for it to be identified as an RSS feed.
Let’s first have a look at how to create an RSS feed for your site from scratch.
All you have to do is to specify your information for all the necessary tags. You can use any text editor. Notepad would work fine but have a look at Notepad++. Let’s see what each of them mean. To create an RSS feed, you start off the RSS file as follows:
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
The first two lines specify the XML and RSS version as you can see. The third line opens a “channel” tag. This is what would contain all the information for your channel or website. Add these three lines as they are.
<title>MakeUseOf RSS Feed</title>
<link>http://www.makeuseof.com/</link>
<description>Cool Websites, Software and Internet Tips</description>
Those few lines specify information about your RSS feed and your website. The title tag houses any title that you would like to give to your RSS feed, link tag points to your website, description tag contains a brief introduction about the RSS feed or the website. Whatever is inside your file now, lets call it the HEADER
online video chatting single click and chat with Local female friends
www.vchat4u.com

Indian Chat Rooms Find an ideal partner in our chat room. Start dating in India now!
www.Flirt.com

Get 1800 Toll Free Number No Hardware & Software Installation User-Friendly UI. Call: 08467021009
www.supertollfree.in

BharatMatrimony.com The most trusted matrimony service With exclusive regional portals
BharatMatrimony.Com/Join-Free-Now
Next up we have the actual content of the RSS feed that will be displayed as distinct entries when viewed using a feed reader. Each entry is contained within a pair of <item></item> and must have the following content at least:
<item>
  <title>Entry Title</title>
  <link>Link to the entry</link>
  <guid>http://example.com/item/123</guid>
  <pubDate>Sat, 9 Jan 2010 16:23:41 GMT</pubDate>
  <description>[CDATA[ This is the description. ]]</description>
</item>
Again the title tag would refer to the heading or your content, link is the complete web address at which the entry can be reached on your website, guid is a unique identifier for the entry. Since all of your entries would be located at a different URL, you can use the link as the guid (if of course no two entries would point to the same URL in your setup). pubDate houses the date on which the entry was published.
The data has a specific format, refer above, the time must be in GMT, you can also refer to RFC 822 section 5 for more details on other date-time specification format. Finally the description tag houses the actual content or description of the entry. Remember the above would be repeated for every entry on your website. For example if you have a blog with 5 articles, a complete RSS feed should have 5 item tags to house 5 entries.
Close off the open channel and rss tags and save the file. Upload it to the appropriate location on your web server (the site root would work fine) and you have an RSS file at your disposal.


source: makeuseof.com/tag/how-to-create-an-rss-feed-for-your-site-from-scratch

Top Social BookMarking sites

1 | Twitter
15 - eBizMBA Rank | 250,000,000 - Estimated Unique Monthly Visitors | 30 - Compete Rank | 5 - Quantcast Rank | 9 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

2 | Pinterest
31 - eBizMBA Rank | 85,500,000 - Estimated Unique Monthly Visitors | 42 - Compete Rank | 16 - Quantcast Rank | 36 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

3 | Reddit
295 - eBizMBA Rank | 16,000,000 - Estimated Unique Monthly Visitors | 705 - Compete Rank | 64 - Quantcast Rank | 115 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

4 | StumbleUpon
416 - eBizMBA Rank | 15,000,000 - Estimated Unique Monthly Visitors | 950 - Compete Rank | *150* - Quantcast Rank | 150 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

5 | BuzzFeed
562 - eBizMBA Rank | 14,500,000 - Estimated Unique Monthly Visitors | 419 - Compete Rank | 132 - Quantcast Rank | 632 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

6 | Delicious
869 - eBizMBA Rank | 5,500,000 - Estimated Unique Monthly Visitors | 1,396 - Compete Rank | *870* - Quantcast Rank | 342 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

7 | Tweetmeme
873 - eBizMBA Rank | 5,450,000 - Estimated Unique Monthly Visitors | 1,317 - Compete Rank | 877 - Quantcast Rank | 426 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

8 | digg
1,314 - eBizMBA Rank | 4,100,000 - Estimated Unique Monthly Visitors | 3,137 - Compete Rank | 430 - Quantcast Rank | 375 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

9 | FARK
1,728 - eBizMBA Rank | 1,850,000 - Estimated Unique Monthly Visitors | 2,045 - Compete Rank | 1,019 - Quantcast Rank | 2,120 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

10 | Slashdot
1,805 - eBizMBA Rank | 1,700,000 - Estimated Unique Monthly Visitors | 2,335 - Compete Rank | *1,825* - Quantcast Rank | 1,254 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

11 | Friendfeed
2,380 - eBizMBA Rank | 1,500,000 - Estimated Unique Monthly Visitors | 4,053 - Compete Rank | *2,400* - Quantcast Rank | 686 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

12 | Clipmarks
2,541 - eBizMBA Rank | 1,400,000 - Estimated Unique Monthly Visitors | *2,800* - Compete Rank | 1,679 - Quantcast Rank | 3,145 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

13 | Newsvine
2,544 - eBizMBA Rank | 1,390,000 - Estimated Unique Monthly Visitors | 2,224 - Compete Rank | 2,020 - Quantcast Rank | 3,388 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

14 | Diigo
3,078 - eBizMBA Rank | 1,200,000 - Estimated Unique Monthly Visitors | 4,765 - Compete Rank | *2,700* - Quantcast Rank | 1,769 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

15 | DZone
6,464 - eBizMBA Rank | 325,000 - Estimated Unique Monthly Visitors | 9,527 - Compete Rank | *NA* - Quantcast Rank | 3,401 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA

*16* | Chime.in
8,091 - eBizMBA Rank | 250,000 - Estimated Unique Monthly Visitors | 10,357 - Compete Rank | *NA* - Quantcast Rank | 5,825 - Alexa Rank.
Most Popular Social Bookmarking Websites | Updated 1/4/2013 | eBizMBA


source: ebizmba

Top press releasing sites

1. http://www.24-7pressrelease.com
2. http://www.addpr.com
3. http://www.afly.com
4. http://www.afreego.com
5. http://www.africa.emailwire.com/
6. http://www.africanewswire.net
7. http://www.articlecity.prwebdirect.com
8. http://www.baygo.com/press/
9. http://www.betanews.com
10. http://www.billhartzer.com
11. http://www.bizeurope.com/pressrelease.htm
12. http://www.businessopportunity.biz
13. http://www.businesswire.com
14. http://www.cdn-news.com/
15. http://www.click2newsites.com/
16. http://www.creativecommons.org/
17. http://www.dbusiness.com/pressrelease.htm
18. http://www.devarchive.com
19. http://www.devpress.com/addNews.html
20. http://www.dime-co.com
21. http://www.downloadjunction.com
22. http://www.earthvision.net
23. http://www.eceurope.com/index.htm
24. http://www.editorandpublisher.com/
25. http://www.emailwire.com
26. http://www.emediawire.com
27. http://www.epicinnovations.com
28. http://www.ereleases.com
29. http://www.e-syndicate.net
30. http://www.eworldwire.com
31. http://www.exchangenet.com
32. http://www.express-press-release.com/
33. http://www.fibre2fashion.com
34. http://www.forrelease.com/
35. http://www.free-press-release.com
36. http://www.gebbieinc.com/
37. http://www.groupweb.com
38. http://www.highwire.stanford.edu/
39. http://www.hotmicrocap.com
40. http://www.hspstreet.com/pr/
41. http://www.hungarynewswire.com
42. http://www.ideamarketers.com/
43. http://www.ideasiteforbusiness.com/cpress1.htm
44. http://www.imediafax.com/
45. http://www.i-newswire.com
46. http://www.internetnewsbureau.com
47. http://www.internetworldstats.com/press.htm
48. http://www.internetwriters.com
49. http://www.learn-more.org
50. http://www.lunareclipse.net/pressrelease.htm
51. http://www.macgo.net/news/submit.php
52. http://www.majon.com/advanced/advanced-pr.html
53. http://www.marketwire.com
54. http://www.mediapeak.com
55. http://www.mediapost.com/
56. http://www.media-press-release.com
57. http://www.news.baou.com/
58. http://www.newslink.org/
59. http://www.newspad.com/
60. http://www.newswire.ca/
61. http://www.newzalert.com/
62. http://www.openpr.com
63. http://www.openpress.com/
64. http://www.opportunityupdate.com/articles/
65. http://www.our-hometown.com/
66. http://www.ourworld.compuserve.com/
67. http://www.powerhomebiz.com/BizNews/pressrelease.htm
68. http://www.pr.com
69. http://www.pr9.net
70. http://www.prbot.com/
71. http://www.press-base.com/
72. http://www.pressbox.co.uk
73. http://www.pressflash.com/
74. http://www.pressmethod.com
75. http://www.pressreleasenetwork.com
76. http://www.press-release-writing.com
77. http://www.prfree.com/
78. http://www.prleap.com
79. http://www.profnet.org/press.html
80. http://www.programmersheaven.com
81. http://www.promaxum.com/promaxum_newsflash.html
82. http://www.promotionworld.com
83. http://www.prudentpressagency.com
84. http://www.prweb.com
85. http://www.prwebdirect.com
86. http://www.sbwire.com
87. http://www.searchwarp.com
88. http://www.seo-pr.com
89. http://www.softpressrelease.com
90. http://www.softwaremarketingresource.com
91. http://www.software-review-center.org/act/addnews.php
92. http://www.softwarewire.com/SubmitRelease.htm
93. http://www.store.1choice4ystore.com/articles.html
94. http://www.storebuilder.co.uk
95. http://www.symbcity.com/new/public
96. http://www.thehostingnews.com/
97. http://www.theopenpress.com
98. http://www.urlwire.com/
99. http://www.webnewswire.com/
100. http://www.webwire.com/
101. http://www.articleant.com/
102. http://www.postpressrelease.com/
103. http://prsync.com/
1
http://www.npr.org/
9
Yes
2
http://www.betanews.com
6
Yes
3
http://www.directionsmag.com
6
Yes
* Register
4
http://news.thomasnet.com/
6
Yes
5
http://www.nanotech-now.com
6
Yes
6
http://www.prlog.org/
6
Yes
* Register
7
http://www.downloadjunction.com
6
Yes
8
http://www.newswiretoday.com/
6
Yes
* Register
9
http://www.pr-inside.com/
6
Yes
* Register
10
http://www.24-7pressrelease.com
6
Yes
* Register
11
http://www.pr.com/
6
Yes
* Register
12
http://www.prleap.com/
5
Yes
* Register
13
http://www.free-press-release.com/
5
Yes
* Register
14
http://www.clickpress.com/
5
Yes
* Register
15
http://www.pressbox.co.uk/
5
Yes
16
http://www.filecluster.com/
5
Yes
17
http://digitalmediaonlineinc.com/
5
Yes
* Register
18
http://www.onlineprnews.com/
5
Yes
* Register
19
http://www.i-newswire.com/
5
Yes
* Register
20
http://www.cgidir.com/
5
Yes
* Register
21
http://www.przoom.com/
5
Yes
* Register
22
http://www.openpr.com/
4
Yes
23
http://www.sbwire.com/
4
Yes
* Register
24
http://www.1888pressrelease.com/
4
Yes
* Register
25
http://www.theopenpress.com/
4
Yes
* Register
26
http://www.free-press-release-center.info/
4
Yes
* Register
27
http://www.prfree.com/
4
Yes
* Register
28
http://www.ukprwire.com/
4
Yes
* Register
29
http://www.itbsoftware.com/
4
Yes
30
http://www.itbinternet.com
4
Yes
31
http://www.freepressreleases.co.uk/
4
Yes
* Register
32
http://freepressindex.com/
4
Yes
* Register
33
http://www.prwindow.com/
4
Yes
* Register
34
http://www.prurgent.com/
4
Yes
* Register
35
http://www.freepressrelease.com.au/
4
Yes
* Register
36
http://www.afreego.com/
3
Yes
37
http://pressabout.com/
3
Yes
* Register
38
http://www.pressmethod.com/
3
Yes
* Register
39
http://pr-gb.com/
3
Yes
* Register
40
http://www.pressexposure.com/
3
Yes
41
http://www.mediasyndicate.com
3
Yes
* Register
42
http://prmac.com/
3
Yes
* Register
43
http://www.publicitywires.com/
3
Yes
* Register
44
http://www.seenation.com/
3
Yes
* Register
45
http://www.afly.com/
3
Yes
* Register
46
http://www.addpr.com/
3
Yes
* Register
47
http://www.pressreleasecirculation.com/
3
Yes
48
http://jkhanok.com/
3
Yes
49
http://news.eboomwebsolutions.com/
2
Yes
* Register
50
http://emeapr.com/
1
Yes
* Register