Home / Admin / Normalize
Duplicate Snippet

Embed Snippet on Your Site

Normalize

Settings to normalize across browsers

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

Comments

Add a Comment