I need HTML code to do something like this. I'd like to have an image and right next to the image, I want to have text. If anyone can direct me to how to do so, that would be greatly appreciated.
<body> <div style="float:left;"> <img src="some url or path" tag="xxx"/> </div> <div style="float:left;"> <p>your text here</p> </div> </body> Code (markup): that's pretty basic code.. you can custom it with external style sheet if you want and add more style
May be something like this: <div style="float:left;width:200px;"> <img src="some url or path" tag="xxx"/> </div> <div style="margin-left:200px;"> <p>your text here</p> </div>