Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Boostrap Grid

// Register Style
function tsum_styles() {

	wp_register_style( 'bootstrap-grid', '/css/bootstrap-grid.css', false, '3.3.7' );
	wp_enqueue_style( 'bootstrap-grid' );

}
add_action( 'wp_enqueue_scripts', 'tsum_styles' );