Here is my code:
This is some example text that i want next to th
If you want to place text to right side of an image, here's code which will allow it:
Image text here.
Running example: https://jsfiddle.net/apc5spcu/
Alternately, you could use divs and make a nicer looking image form.
HTML
Image text here.
Image text here.
Image text here.
Image text here.
This code makes use of 'Float' which positions each division next to eachother on left and right sides.
CSS
.container {
width:540px;
}
.imgdiv {
float:left;
width:140px;
}
.textdiv {
float:right;
width:300px;
}
Running example: https://jsfiddle.net/apc5spcu/1/