Suggest me HTML Code for Image left and text Right

Some blogging sites doesn't allow to keep image floating left and text floating right.
If the blogging site doesn't allow you to do this, does that mean that you don't have access to modify CSS and HTML structure?
You'd need to add the image before the text and use float: right; for image to make it floating left. You could add margin to give some white spaces.
 
HTML <img> tag ... <img src="smiley.gif" alt="Smiley face" align="middle"> This is some text.</p> ... For the image to align left or right use the CSS property float.
 
Back
Top