styles
// Register Style function nddts_styles() { wp_register_style( 'bootstrap', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css', false, '3.3.2', 'screen' ); wp_enqueue_style( 'bootstrap' ); wp_register_style( 'fullpage', '/css/jquery.fullPage.css', false, '1.0', 'screen' ); wp_enqueue_style( 'fullpage' ); } // Hook into the 'wp_enqueue_scripts' action add_action( 'wp_enqueue_scripts', 'nddts_styles' );