How to set src to the img tag in html from the system drive?

Use an image on a web page, use the <img> tag. The tag allows you to add image source, alt, width, height, etc. The src is to add the image URL.

<html>
   <head>
      <title>
         HTML img tag Practical
      <title>
   </head>

   <body>
      <img src="file:/C:/images/image.png" alt="image" width="60" height="60">
   </body>
</html>

No comments:

Post a Comment