In the place where you want to display the name of the site, this is usually the header.php file. Add to the right place function below:
<?php echo esc_html(bloginfo('name')); ?>
Use the function to display a link to the main page:
<?php esc_url(home_url()) ?>
Display the name of the site with a link:
<a href="<?php esc_url(home_url()) ?>"><h1><?php echo esc_html(bloginfo('name')); ?></h1></a>
OMG dont use a h1 as site name!