Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

demo1

una prueva

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

	// Attributes
	extract( shortcode_atts(
		array(
			'1' => 'font-zise:2em;',
			'2' => 'font-zise:3em;',
			'3' => 'font-zise:4em;',
		), $atts )
	);

	// Code
<div style="font-zise:0.5em;"></div>
}
add_shortcode( 'III', 'custom_shortcode' );