0
0
yyogesh manthan
The align attribute of an image specifies where the image should be aligned according to the surrounding element.
Attribute Values: right - Align image to the right left - Align image to the left top - Align image to the top bottom - Align image to the bottom middle - Align image to the middle
<!DOCTYPE html>
<html lang="en">
<head>
<title>Img Align Attribute</title>
</head>
<body>
<p>
This is an example. <img src="image.png" alt="Image" align="middle" /> More text right here
<img src="image.png" alt="Image" width="100" />
</p>
</body>
</html>