<?php echo esc_url( get_bloginfo( 'stylesheet_directory' ) ); ?>
Output
http://example.com/wp-content/themes/twentysixteen
Alternatives
Internally, get_bloginfo( 'stylesheet_directory' ) calls get_stylesheet_directory_uri(), so you may want to use that instead:
<?php echo esc_url( ...