Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Shortcode

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

	// Attributes
	extract( shortcode_atts(
		array(
		), $atts )
	);
}
add_shortcode( 'col', 'shortcode_column' );