Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

style

// Register Style
function blogfit_styles() {

	wp_register_style( 'mobile', 'mobile.css', array( 'main' ), '0.1', 'handheld' );

	wp_register_style( 'main', 'main.css', false, '0.1', 'all' );

}

// Hook into the 'wp_enqueue_scripts' action
add_action( 'wp_enqueue_scripts', 'blogfit_styles' );