-3

I want to add text after the icon using HTML. Any help? Below is the image.

Example

Anantha Raju C
  • 1,780
  • 12
  • 25
  • 35
Bhavya
  • 1
  • 4

1 Answers1

0

Simpliest way to do it, if you do not use any framework like bootstrap, you can try following:

.myContent { margin:0; padding:0; background-color: #ccc; }
.myContent .left { float:left; width:20%;}
.myContent .text { padding:10px; }
.clear { clear: both; }
<div class="myContent">
   <div class="left">
     <img src="images/your-image.jpg" />
   </div>
   <div class="left">
    <div class="text">
       my text....more text...
    </div>
   </div>
   <div class="clear"></div>
  </div>
Vural
  • 8,666
  • 11
  • 40
  • 57