Alternate text in HTML?

  • Thread starter Thread starter 555 timer
  • Start date Start date
5

555 timer

Guest
I designed a little website.. i inserted pictures and added alternate texts using frontpage. I saved the page that i designed. the problem is that the text does not appear when I place the mouse on the pic. i tried Microsoft explorer and Firefox!!
a part of the code that i used :

<img border=0 width=270 height=270
src="models-ipods_files/image008.jpg" alt="this is my text" v:shapes="_x0000_s1025">

thanx
 
<img border=0 width=270 height=270
src="models-ipods_files/image008.jpg" alt="this is my text" v:shapes="_x0000_s1025">

Wrong, switch your tags:

<img src="models-ipods_files/image008.jpg"
width="270" height ="270" border="0"
alt="this is your text">

That will work, SRC always comes first.
 
Back
Top