Link to stylesheet?

I uploaded another style sheet so that I can see it in the editor in the wp-admin section.
But When I edit the header .php file to liks to it, I dont know if im doing it correctly
here are links to both stylesheets in the header.php file


<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />

This is the link to the default one.


<link rel="stylesheet" type="text/css" media="all" href="http://fixmysite.us/gmpc/wordpress/wp-content/themes/GMPC/church.css" />

Heres the linkto the one I uploaded, which worksbut is there a shortcut I should be using like in the first href""?

Thanks…

i would do the second like this:
<link rel=“stylesheet” type=“text/css” media=“all” href=“<?php bloginfo( ‘template_url’ ); ?>/church.css” />

thanks…