Making WordPress Theme code at header.php

//language attribute যোগ করার জন্য

<html <?php language_attributes(); ?>>

//meta Charset যোগ করার জন্য

 <meta charset="<?php bloginfo( 'charset' ); ?>">

//Title dynamic করার জন্য

 <?php wp_title( '|', true, 'right' ); ?>

//before add close tag of head যোগ করার জন্য

<?php wp_head(); ?>

//logo Dynamic করার জন্য

<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<img src="<?php bloginfo('template_directory')?>/images/logo.png"  alt="logo1" />
</a>

//blog_info যোগ করার জন্য

<h1>
   <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</h1>