I have the following code in my functions.php file with a call in the header, but nothing is being outputted in the html. There are no stylesheets.
I have tried that add action wp_enque_styles with and without the s (style)
<?php
function scripts_and_styles() {
if (!is_admin()) {
// normalize
wp_register_style( 'normal-stylesheet', get_stylesheet_directory_uri() . 'http://necolas.github.com/normalize.css/2.1.0/normalize.css', array(), '', 'all' );
// register main stylesheet
wp_register_style( 'main-stylesheet', get_stylesheet_directory_uri() . '/css/style.css', array(), '', 'all' );
// enqueue styles and scripts
wp_enqueue_style( 'main-stylesheet' );
wp_enqueue_style( 'normal-stylesheet' );
}
}
add_action( 'wp_enqueue_styles', 'scripts_and_styles' );
?>

wp_enqueue_styles(yet). – Chip Bennett Feb 11 at 4:21