Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Google Fonts

// Register Style
function Google_Fonts() {

	wp_register_style( 'Calligraffitti', '', false, false );
	wp_enqueue_style( 'Calligraffitti' );

}

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