Home / Admin / normalize css (the new normal)
Duplicate Snippet

Embed Snippet on Your Site

normalize css (the new normal)

Code Preview
php
<?php
// Add custom styles
function add_the_new_normal_css() {
			
			wp_register_style( 'the-new-normal-css', 'https://github.com/sarahschopick/the-new-normal.css/blob/c413cad2074e314774f538dd044ad30d8b5ce31d/the-new-normal.css', array(), '1.0.0' );
			wp_enqueue_style( 'the-new-normal-css' );
			
}
add_action( 'wp_enqueue_scripts', 'add_the_new_normal_css' );

Comments

Add a Comment