display image file in html code example
Example 1: how to add image in html
<img src="img_girl.jpg" alt="Image Load Error" width="500" height="600">
Example 2: how to show an image in html
// Show image in html bois
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="img">
<img class="img" src="image.png">
</div>
</body>
</html>