The title tag will always be one of the most important factors in achieving high search engine rankings. The title text is placed within the <TITLE></TITLE> tags inside the HTML head section. It is displayed on the title bar of your browser.

The Title Tag is Very Important. Why?
As we know that there are many search engines around us and each ranked web sites in different algorithms. But the interesting fact is that all search engines gives more importance to a web site title tag while manipulating their ranking algorithms. So, I am sure title tag is crucial for search engines in their ranking calculations.
(more…)
|
No Comments » | 1,091 views
Today, I will teach you how to write JavaScript and HTML so that when visitors come to your site click on the image button, then the image button will change to a new image button. When the visitor clicks on the other image button, the original image button will reappear.
Here’s the code for creating an onclick image swap effect, just follow it step by step:
(more…)
|
No Comments » | 2,094 views
<MARQUEE> and <BLINK> are 2 browser specific tags. However, these tags are displayed only by certain browsers only.
<BLINK>: Mozilla Firefox
<MARQUEE>: Internet Explorer
BLINK Tag
This tag can be supppored only by Netscape. IE ignores this tag. So if you are using Internet Explorer you wouldn’t see the blinking text below.
<BLINK>Blinking Text</BLINK>
Advantage: It is a standard HTML tag which is actually easiest way to grab visitors attention to something you think that is important in your page.
(more…)
|
No Comments » | 3,140 views
Today, I will share with you about the very basic and general information for the differences between http:// and https://. HTTP stands for HyperText Transport Protocol, which is for information to be passed back and forth between web servers and clients.
Difference Between http and https

As in known, HTTPS session normally runs on TCP port 443, but HTTP which runs on port 80.
(more…)
|
No Comments » | 1,122 views
Every webmaster also know that table cells can be spanned more than one column or row. The attribute of ROWSPAN is used to make cell span multiple rows. If let say ROWSPAN=”3″ it will only span a column vertically across three rows.
<table border=”1″ cellspacing=”2″ cellpadding=”2″ width=”200px”>
<tbody>
<tr>
<td>Codebasic.net</td>
<td rowspan=”2″>spanned</td>
<td>myLengLui.com</td>
</tr>
<tr>
<td>imDavidLee.com</td>
<td>LifeTechie.com</td>
</tr>
<tr>
<td>LimPek.com</td>
<td>innoDesigner.com</td>
<td>PenangBlogger.com</td>
</tr>
</tbody></table>
| Codebasic.net |
spanned |
myLengLui.com |
| imDavidLee.com |
LifeTechie.com |
| LimPek.com |
innoDesigner.com |
PenangBlogger.com |
The COLSPAN attribute is to make a cell span multiple columns. It spans the columns and will make your table cell span horizontally.
(more…)
|
No Comments » | 1,454 views