Forum Moderators: phranque

Message Too Old, No Replies

making a small banner

banners with embedded links

         

bostons4u

10:13 pm on Oct 9, 2006 (gmt 0)

10+ Year Member



How would i make a banner with embedded links and keywords?

bostons4u

2:30 am on Oct 12, 2006 (gmt 0)

10+ Year Member



I guess no one knows how to do this. I have searched this site for the answer and haven't come up with anything. Can someone point me in the right direction?

tedster

2:54 am on Oct 12, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Usual case: the banner is a graphic file (gif, jpg, png); the links are in the containing html mark-up, not embedded in the graphic file itself. The keywords are in the alt attribute, again not in the graphic.

Possible alternative: the banner is a Flash movie. Links can be embedded, and keyword rich text, too. But search engines will not take account of elements within a Flash movie in their scoring algorithms.

bostons4u

8:03 pm on Oct 12, 2006 (gmt 0)

10+ Year Member



i think i am going to hire someone to do this for me. can anyone recommend someone or email me? how much do you think i should pay someone for this? thanks for your help

Tastatura

8:32 pm on Oct 12, 2006 (gmt 0)

10+ Year Member



I am not sure about kwds ( but if I got your question right ) to have links within an image you can try something like this


...
<IMG SRC="pic1.gif" USEMAP="#map1">

<MAP NAME="map1">

<AREA SHAPE="RECT" COORDS="0,0,10,20" HREF="http://www.example.com">

</MAP>
...

so when someone clicks on the area of the image defined by the rectangle shape they would go to example.com

Areas on the image can be defined using rectangle, circle or polygon

For more info see W3C's Objects, Images, and Applets [w3.org] doc.

HTH