Click to See Complete Forum and Search --> : Insert image into text


Dark Dragon
09-04-2003, 11:24 AM
Probably a painfully elementary issue but what tags do I use to insert a small image into text?

DaveSW
09-04-2003, 11:27 AM
hmm? <img src="smallpic.jpg" width="10px" height="10px" alt="something">

Charles
09-04-2003, 11:33 AM
Originally posted by DaveSW
hmm? <img src="smallpic.jpg" width="10px" height="10px" alt="something"> Strictly spaeking that should be

hmm? <img src="smallpic.jpg" width="10" height="10" alt="something">

or better

hmm? <img src="smallpic.jpg" style="width:10px; height:10px" alt="something">

Dark Dragon
09-04-2003, 12:29 PM
Ah!..Okay, thanks.