image

Introduction

Image tag is used to display images on a webpage.
<img src="image.jpg" alt="image" width="100" height="100">
src attribute is used to specify the path of the image.
alt attribute is used to specify the alternate text of the image.
width and height attributes are used to specify the width and height of the image.

Image in different folder

<img src="../images/image.jpg" alt="image" width="100" height="100">