How to have H1 for site title only on Homepage?

This is one way…

<?php $headertag = ( is_front_page() ) ? 'h1' : 'h6'; ?>
<hgroup>
    <<?php echo $headertag; ?> class="site-title"><a href="https://wordpress.stackexchange.com/questions/88144/<?php echo home_url("https://wordpress.stackexchange.com/" ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></<?php echo $headertag; ?>>
    <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</hgroup>