the bloginfo parameter returns the site settings such as site title , stylesheet url, template url etc.
get the template url: <?php bloginfo(‘template_url’); ?>
get the stylesheet url: <?php bloginfo(‘stylesheet_url’); ?>
get the site title: <?php bloginfo(‘name’); ?>
is there something specific that you are trying to do?