in reply to What is code to show the image in web page?

It's probably just a typo when you were typing this question, but just in case: it should be:
<img src="path" />
not
<img scr="path" />
It's also a good idea to add an "alt" attribute for accessibility (and to make it valid, depending on the HTML version you're using). That'd make it:
<img src="path" alt="Helpful Alternative Text" />