how can I use italics inside the title of a html img tag?

Bill4935

New member
<img src="http://www.something.com/guy.jpg" style="width:160px;padding-right:5px" align="left" title="This guy: kickin' butt and lookin' good doing it. Say, is that a < i > turtleneck? < /i >">

I want the word turtleneck to be emphasized with italics. I have & lt; instead of "<" but how do I rewrite the slash to close the italics tag?
Added details: The software that will show this image will display the Title as a pop-up tool tip when you hover your cursor over it. So I want to edit that title text for when it is viewed that way. (Something I learned in HTML coding 102.)
 
Try formating it from the CSS script e.g.

img {
border: 0;
font-weight: bold;
font-style:italic;
text-decoration: none;
}

OR

img.normal {font-style:normal}
img.italic {font-style:italic}
img.oblique {font-style:oblique}
 
Back
Top