Posts Tagged ‘html’

HTML VS PHP : Which is best for SEO ?

Alot of webmaster think that html pages are ranked well than PHP extension . First of all thats not true, it depends on how you use php .

As pulse added the problem is related to the fact that PHP uses in some cases session ids in the url and since session changes from user to user the URL looks different at the “eyes” of a search engine. PHP pages are dynamic so you will find in most cases question marks in the url… for example : mydomain.com/showuserinfo.php?userid=222

Google doesnt seem to pay lots of attention to this since it means dynamic conent, maybe automatic information and marks that as not so relevant information. Poeple use dynamic page sto fool search engines and Google pays attention to that also. (more…)

10 HTML Tips for Beginners

1. Always close your HTML tags

When you type an opening HTML tag (e.g. <b>, <p>), always place the corresponding closing tag at the end. For example:

* <b>My favourite animals are horses and elephants.</b>
* <p>My favourite animals are horses and elephants.</p>
* <h2>My favourite animals are horses and elephants.</h2>

This will ensure that your HTML pages work properly on all browsers, and will help to prevent any strange problems occurring in your pages! This is especially important with tags such as <div>, <span>, <table>, <tr> and <td>.

Some tags don’t have a corresponding closing tag – just use these tags on their own. Examples include:

* The <br> tag, for creating line breaks
* The <img> tag, for inserting images
(more…)