Saturday, June 13, 2015

SEO - Verifying Web Site

You design and develop a website but how would you know if you have put all the HTML syntax in a correct way. Most browsers do not complain against your wrong syntax, butwrong is wrong.
There are many SEO experts who claim that SEO is not dependent on site HTML/XHTML verification. But we will discuss various reasons why your site should be W3C Compliance.

Why HTML/XHTML Verification is Required?

There are various reasons to verify your website before hosting it over the internet.
  • Any webpage quality depends on how well you have written your webpage.It should be syntactically correct and should pass all the Quality Gates.
  • When any search engine does indexing for your web page content, it might get confused if the HTML tags are not written properly, and much of the web page content might not be indexed properly.
  • There might be many HTML tags, which you are using in your webpage but then have been depreciated and many of the search engines do not support them.
  • Consistency, HTML Code Beauty, Process Compliance are always appreciated by good webmasters.

What is W3C Compliance?

W3C is the World Wide Web Consortium and since 1994, the W3C has provided the guidelines by which, websites and webpages should be structured and created. Here are the links to validate your web pages:
While verification, you may get errors along with appropriate reasons. All the validations will be done using XHTML DTD, which is a refined version of HTML.

Rules for W3C Compliance

There following rules, are to be following while developing a webpage.
  • Use XHTML declaration statements to start every XHTML page:
    <!DOCTYPE html PUBLIC 
    "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
  • Every tag must be closed.
  • The head and body tags are now mandatory.
  • Empty tags get a terminating slash. An empty tag is a tag that doesn't require an end tag. Examples include <br> and <hr>.
    <BR> is now <br />.
    <HR> is now <hr />.
    <IMG SRC="--"> is now <img src="--" />
  • All tags must be lower-case. This does not apply to attributes, only tags. For example, both of these formats are acceptable under the XHTML DTD:
    <FONT color="#ffffcc"> is invalid
    <font color="#ffffcc"> is valid
    <font color="#FFFFCC"> is also valid
  • All the attribute values should be put with in double quotes.
  • Tags may not be nested.
    <b><i>Text</b></i> This is invalid
    <b><i>Text</i></b> This is valid
  • The <pre> tag should not contain: img, object, big, small, sub, or sup.
  • One <form> tag cannot be inside another <form> tag.
  • If your code contains a &, it must be written as &amp;.
  • Any use of CSS should use all lower-case letter.

Related Posts:

  • SEO Caution Signs The following are SEO caution signs to look for when considering an SEO firm. These points should also be noted when strategizing your own search campaign: Results can never be guaranteed. In other words,… Read More
  • SEO: Reciprocal Links For a long time, reciprocal links have remained at the forefront of most inbound linking strategies. This is going to have to change. Google now discounts all reciprocal links. The algorithm has been altered to ide… Read More
  • The Importance of Anchor Text The importance of anchor text with respect to a linking strategy cannot be overstated. Back-links are a huge part of the search engine algorithm. When initiating a linking campaign, it is vital that external sites … Read More
  • 6 Tips For Creating The Most Killer Viral Gallery Content Boom! You created the world’s next big viral content site. You have a great name, solid content, and enough server bandwidth to support the entire population of North America viewing your site concurrently. However, you don’… Read More
  • 24 Steps To Rank Your Blog On Google’s 1st Page Matt Cutts, the lead of Google’s web spam team, spoke about why WordPress is the best optimized blogging platform for search engines and gave some tips for all bloggers on how to start getting search traffic. It… Read More

0 comments:

Post a Comment