html5-reset theme does not show the image [closed]

Code is not readable in comment so I am adding it here. With a little explanation.

You will need to add full path of the image file to show them in theme. If your image is in theme directory then you will have to use theme directory path variable bloginfo('stylesheet_directory') with image name. So this is the code you will need to add in your theme files.

<div class="the-image">
    <img src="https://wordpress.stackexchange.com/questions/170852/<?php echo get_template_directory_uri(); ?>/images/moonrise_100.jpg" alt="moonrise" />
</div>