I want to create a bio page which will have a picture on the left, name, title, email, and phone to the right of the picture, and after the picture and the text to the right, some info on the person. Here is the code I am using but it is not working. My image and the text to the right display where I want them to, however my info div is displayed next to my name , title, etc section.
<div>
<div style="float:left"><img src="Images/fowler.jpg" alt="Fowler" /></div>
<div style="float:left">
<div>Name</div>
<div>Title</div>
<div>Email</div>
<div>Phone</div>
</div>
</div>
<div>Info about person</div>
Any help would be appreciated thank you.
As someone has already said, you might want to consider using a css.
I am personally very fond of creating tables for this: this should be a good start:
Good luck!