Friday, January 28, 2011

Understanding HTML in SEO training

HTML is hypertext markup language. It is commonly used in web page development. HTML code is written in a text file (.txt) extension and saved as "name.htm" (don't forget to add double cots and "select all" option while saving document.

Understanding HTML coding in SEO in important as the SEO expert should know the basics to define title, keywords, description and headings properly. If the coding is wrong he could be able to identify the errors on page. It comes under On page optimization.

Here is an example of simple html coding. 

<html>
    <head>
    <title>my first HTML</title>   
(what is meta)
    <meta name="keywords" content="introduction, my site, personal site, my own site />

    <meta name="description" content="Learn HTML explains the basics to advance level of learning free by using templates, source codes and tons of scripts />
 </head>
<body>

A <strong>free HTML Learning</strong> website. <br>
 

Heading Tags
<H1> This is H1 heading </h1>
<H2>This is H2 heading </h2>
<H3> This is H3 heading </h3>
<H4> This is H4 heading </h4>
<H5> This is H5 heading </h5>
<H6> This is H6 heading </h6>
 

<p>   (Paragraph tag)
   
Paragraph about content of my site
</p>
You can insert a hyperlink in your website by simply putting one line code.
<a href>"www.mysite.com.pk">My Site</a>
You can insert image and put description for mouse over display by following these commands
<img src="www.abc.com" alt="sample picture"/>
<img src="sky.gif" alt="blue sky" />
 

</body>
</html>

Follow the tags and closings carefully while writing code in HTML.

SEO experts much consider the head section of coding where title, keywords and description is defined for
search engines. Most of the SEO tuning scripts are included in head section of web page coding.


No comments:

Post a Comment