[ Moderator note: please wrap code in backticks or use the code button. Do not use blockquote it doesn’t work. ]
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php bloginfo( 'name' ); ?><?php wp_title(); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<?php
function wppro_script_enqueuer() {
//first we register the styles
wp_register_style( 'bootstrap', get_stylesheet_directory_uri().'/assets/css/bootstrap.css');
wp_register_style( 'bootstrap-responsive', get_stylesheet_directory_uri().'/assets/css/bootstrap-responsive.css');
wp_register_style( 'docs', get_stylesheet_directory_uri().'/assets/css/docs.css');
wp_register_style( 'prettify', get_stylesheet_directory_uri().'/assets/js/google-code-prettify/prettify.css');
//now we enqueue them
wp_enqueue_style( 'bootstrap' );
wp_enqueue_style( 'bootstrap-responsive' );
wp_enqueue_style( 'docs' );
wp_enqueue_style( 'prettify' );
}
add_action( 'wp_enqueue_scripts', 'wppro_script_enqueuer');
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> data-spy="scroll" data-target=".bs-docs-sidebar">