Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Foundation CSS

// Register Style
function foundation_styles() {

	wp_register_style( 'fontawesome_css', 'maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css', false, '4.7.0', 'screen' );
	wp_enqueue_style( 'fontawesome_css' );

	wp_register_style( 'foundation_css', '/wp-content/themes/cody_theme/inc/foundation/css/foundation.min.css', false, '6.0', 'screen' );
	wp_enqueue_style( 'foundation_css' );

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