Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

sot vid

// Add Shortcode
function dimension_heading_home( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'heading_content' => 'A Symbiotic Future (SF)',
			'date' => 'November 2018',
		),
		$atts
	);

	 return '<span class="label label-info" style=" font-weight: 700; font-size: 18px; border-radius: 0px; position: absolute;background: #23234a; ">'.$atts['heading_content'].'</span>';

}
add_shortcode( 'dimension_heading', 'dimension_heading_home' );