in reply to What is code to show the image in web page?
not<img src="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 scr="path" />
<img src="path" alt="Helpful Alternative Text" />
|
|---|