Icon Box

You can use below shortcodes to create icon box of different styles.

Demo Link:
https://demo2.drupar.com/vanipro/elements/icon-box-and-text-box

Icon Box Style #1 with Font Icon

<div class="icon-box">
<i class="fa fa-gift" aria-hidden="true"></i>
<h4>Heading Text</h4>
<p>some paragraph text</p>
</div>

Icon Box Style #2 with Font Icon

<div class="icon-box2">
<i class="fa fa-gift" aria-hidden="true"></i>
<div class="box-content">
<h4>Heading Text</h4>
<p>some paragraph text</p>
</div>
</div>

Icon Box Style #1 with Image

<div class="icon-box">
<img src="/path/to/image/image-name.png" alt="icon">
<h4>Heading Text</h4>
<p>some paragraph text</p>
</div>

Icon Box Style #2 with Image

<div class="icon-box2">
<img src="/path/to/image/image-name.png" alt="icon">
<div class="box-content">
<h4>Heading Text</h4>
<p>some paragraph text</p>
</div>
</div>