Iam unable get the image in the output of html code
Hi @nandithareddy619,
Make sure you image is a jpg or png file, here you are using.html file as image, also ensure that the image is stored in the same folder.
Let me know if you have any other doubts.
Hi @nandithareddy619
The issue is with the <img src="html.html">
tag. You are trying to load an HTML file instead of an image. To fix this, try replacing html.html
with the correct image file name (e.g., image.jpg
, photo.png
). Ensure the image file is in the same folder as your HTML file.
Example:
<img src="image.jpg" alt="My Image">