Monday, November 12, 2007

Create Blogroll - Choose Your Style

Blogroll is a site exchanged link where you put others site links into your blog.

Blogroll with `Marquee'
Very popular among plenty blogger because can get save space of blog.

Coding

<marquee onmouseover="this.stop()"

onmouseout="this.start()" scrollamount="2" direction="up" width="50%" height="150">

<a href="http://diidami.blogspot.com/" target="_blank">Information All The Resouces</a>
<br/>
<a href="http://terengganu-travel.blogspot.com/" target="_blank">Terengganu Travel</a>
<br/>
<a href="http://cancerinfo-mesothelioma.blogspot.com/" target="_blank">Mesothelioma Cancer</a>
<br/>
</marquee>



And will appear in your site like this,

Information All The Resouces
Terengganu Travel
Mesothelioma Cancer

Note :-
  1. scrollamount="2" : to make move slowly or fastly.
  2. direction="up" : to make move up or down.
  3. width="50%" : width size.
  4. height="150" : height size.


Blogroll with Dropdown Menu

Coding

<form>

<select name="menu"onchange=" window.open (this.options [this.selectedIndex].value,'_blank')" size="1" name="menu">

<option> - Blogroll - </option>

<option value="http://diidami.blogspot.com/" target="_blank">Information All The Resouces</option>

<option value="http://terengganu-travel.blogspot.com/" target="_blank">Terengganu Travel</option>

<option value="http://cancerinfo-mesothelioma.blogspot.com/" target="_blank">Mesothelioma Cancer</option>

</select>
</form>

And will appear in your site like this,