Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Iconbox

// Add Shortcode
function themedesigner_iconbox( $atts , $content = null ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'title' => '',
			'icon' => '',
			'style' => 'style1',
		), $atts )
	);

	// Code
$out = '<div class="service '.$style.'"><i class="fa fa-'.$icon.'"></i><h5>'.$title.'</h5><p>'.do_shortcode($content).'</p></div>';
return $out;
}
add_shortcode( 'iconbox', 'themedesigner_iconbox' );