Posts: 2,320
Name: Keith Marshall
Location: West Hartford, CT
|
You have to convert special html charactures into html char equivilant. Most modern text editors will do this for you.
To print this on the screen:
Code:
<b>The Image...</b>
<img src="images.example.gif" border="0" width="100" height="100" alt="The Image" />
You need this in your html:
Code:
<b>The Image...</b><br />
<img src="images.example.gif" border="0" width="100" height="100" alt="The Image" />
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|