Set 56 Practical Question

⭐ Q6 – 3 Images: Left, Center, Right

Example Code (Read Only):


<!DOCTYPE html>
<html>
<head><title>Image Align</title></head>
<body>
<div style="text-align:left;">
<img src="left.jpg" width="200">
</div>
<div style="text-align:center;">
<img src="center.jpg" width="200">
</div>
<div style="text-align:right;">
<img src="right.jpg" width="200">
</div>
</body>
</html>

Write Your HTML / JavaScript Code