Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

create well

// Add Shortcode
function create_well( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'class' => 'light-well',
			'text' => '',
		),
		$atts
	);

	return '<p class="'.$atts['class'].'">'.$atts['text'].'</p>';

}
add_shortcode( 'well', 'create_well' );