Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Scripts

// Register Script
function nddts_scripts() {

	wp_register_script( 'bootstrap', 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js', array( 'jquery' ), '3.1', false );
	wp_enqueue_script( 'bootstrap' );

	wp_register_script( 'fullpage', '/js/jquery.fullPage.min.js', array( 'jquery' ), '1.0', false );
	wp_enqueue_script( 'fullpage' );

	wp_register_script( 'jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js', array( 'jquery' ), '1.9.1', false );
	wp_enqueue_script( 'jqueryui' );

	wp_deregister_script( 'jquery' );
	wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js', false, '1.8.3', false );
	wp_enqueue_script( 'jquery' );

}

// Hook into the 'wp_enqueue_scripts' action
add_action( 'wp_enqueue_scripts', 'nddts_scripts' );