0
How do I align two things next to each other in HTML and CSS
It should look something like this: (example) This This Is Some A Text Photo
2 Answers
+ 1
Use float property for example
<div>
     <img src="url" style="float:left;"/>
     <span style="float:right;>This some text</span>
</div>





