HTML Image by PHP, MySQL, CSS, HTML and SEO Tutorials

You can add images in your html file. For this you have to use the html image tag. The html tag is <img>. To use this tag follow the steps.
a. Open your notepad.
b. Write the codes below.
  
   <html>
      <body>
        <img src="banner.jpg" width="220" height="90"/>
      </body>
   </html>

c. Write the name with its extension of that image which is you use in your html page in src=" ". And save it as test_image.html and this page and te image save in same folder.
d. Open the file in any browser and see the output.

Output must like as the image below.