Search code examples
htmlcssimagestylessidebar

HTML CSS text like a sidebar next to an image


I have a problem at my Website. I want to "print" text on the left of an image. But I dont know how to do this. Here my Site: link Here how it should look: link

enter image description here

Can someone help me please?


Solution

  • Replace the img tag with:

    <img src="http://martin-fischer.tk/assets/img/AVRStick.png" style="float: left;">
    <p>Here the text</p>
    

    Demo.