Instruction
1
Make sure that your banner does not contain prohibited on the service elements. Embed code in the section or page will look like this:
<A href="http://адрес the website that made the transition" target="_blank">

<IMG src="http://адрес pictures for your banner" border="0" alt="review for banner, popup when you hover">

</A>
2
This banner you can place on main page of the site, however, in that case your website visitors will see the banner only at the moment when they will be on this page.
3
You can place a banner in the description of the main section, but you can still add it as one of the menu items.
4
If you want your banners moved horizontally in the direction from right to left, your code should look something like this:
<marquee behavior="scroll" direction="left" width="176" height="31" scrollamount="1" scrolldelay="40" truespeed="truespeed">

... banner code 1 ...

...

... banner code N ...

</marquee>
Remember that a moving width of the container should be at least double the width of your banner, and the height of the container must be equal to the height of the banner.
5
If you want the banners were moving vertically, then there are three ways.
The first has the code:
<marquee behavior="scroll" direction="up" width="88" height="62" scrollamount="1" scrolldelay="40" truespeed="truespeed">

<br / >

_код_баннера_1_<br>

_код_баннера_2_<br>

...

_код_баннера_N_

</marquee>
In this case, your banners are like glued to each other.
The second method:
<marquee behavior="scroll" direction="up" width="88" height="62" scrollamount="1" scrolldelay="40" truespeed="truespeed">

<br / >

_код_баннера_1_<br><br>

_код_баннера_2_<br><br>

...

_код_баннера_N_

</marquee>
In this case, the banners will move in intervals of one line.
The third method:
<marquee behavior="scroll" direction="up" width="88" height="62" scrollamount="1" scrolldelay="40" truespeed="truespeed">

<font style="font-size: 20%;">

<br / >

_код_баннера_1_<br><br>

_код_баннера_2_<br><br>

...

_код_баннера_N_

</font>

</marquee>
In this case, the interval between banners will be reduced.