SyntaxStudy
Sign Up

<img>

tag

Embeds an image into the page. The alt attribute is required for accessibility.

Syntax

<img src="image.jpg" alt="Description" width="300" height="200">

Example

html
<!-- Basic image -->
<img src="photo.jpg" alt="A beautiful sunset" width="800" height="600">

<!-- Responsive image -->
<img src="logo.png" alt="Company Logo" style="max-width: 100%; height: auto;">

<!-- With srcset for responsive -->
<img src="img-800.jpg" srcset="img-400.jpg 400w, img-800.jpg 800w" alt="Photo">