Home / Admin / Normalize CSS (The New Normal)
Duplicate Snippet

Embed Snippet on Your Site

Normalize CSS (The New Normal)

Code Preview
php
<?php
if ( ! function_exists( 'enqueue_custom_styles' ) ) {
    function enqueue_custom_styles() {
      // Normalize
      wp_register_style( 'the-new-normal-css', 'https://cdn.jsdelivr.net/gh/sarahschopick/the-new-normal.css@main/the-new-normal.min.css', array(), '1.0.0' );
      wp_enqueue_style( 'the-new-normal-css' );
      // WordPress Normalization
      wp_register_style( 'normalize-wordpress', 'https://cdn.jsdelivr.net/gh/sarahschopick/normalize-wordpress@main/normalize-wordpress.min.css', array(), '1.0.0' );	
      wp_enqueue_style( 'normalize-wordpress' );
    }
}
add_action( 'wp_enqueue_scripts', 'enqueue_custom_styles' );

Comments

Add a Comment