sefer wrote:
You can't put an image, or HTML in your signature, you can only put it in your avatar:
http://www.wrongplanet.net/forums-profi ... ofile.htmlAlso the HTML is wrong, it's supposed to look like this:
Quote:
<img height="90" width="120" src="Socialsim.jpg">
But first you would have to upload the picture to a website like imageshack or photobucket, so it would end up looking like this:
Quote:
<img height="90" width="120" src="http://img44.imageshack.us/img44/3550/Socialsim.jpg">
And I think you spelled Socialism wrong.
The height and width attributes can be left out since they're automatically detected, but the "alt" attribute is required. It is for text to display if the image doesn't load. It can be left empty, but it has to be included for the code to be proper HTML.
And if you were using XHTML, every opening tag has to either have a corresponding closing tag or to end with a slash.
In HTML, the code would be
Code:
<img src="http://img44.imageshack.us/img44/3550/Socialsim.jpg" alt="">
In XHTML, the code would be
Code:
<img src="http://img44.imageshack.us/img44/3550/Socialsim.jpg" alt="" />