I am sparsh
I’m unable to view the uploaded screenshot. Could you please share additional details such as the code and a description of the output shown in the screenshot? This will allow me to check and assist you further.
hey, the screenshot isnt visible. Could you share it again so that i will be able to help cause I too had a similar issue
Hello,
The screenshot is not visible. Please share it again.
Thank you.
The screenshot isn’t visible, share it again if the image is not showing in the output even after following the below steps.
- Make sure that the image is in the same folder where your html file is.
- Use the
src
attribute ofimg
tag to embed images into your html file and make sure that the name of image file and its extension is correct.
For eg: If the name of the image file is “myImg” with extension type jpeg, then your code should look something like this:
<img src="myImg.jpeg" alt="">
- Just in case you have your image file inside another folder of your main folder, then you have to add the name of that particular folder inside which your image file is, followed by “/”.
For eg: If your image file is inside a folder called “images” and the name of the image file is “myImg” with extension type jpeg, then your code should be
<img src="images/myImg.jpeg" alt="">
Hope this helps.
Your screenshot is not visible.Could you upload it again so your problem can solved easily.
This are the points you consider for this problem :
1. Recheck your image is in a same folder of html file or not.
2.May be there is mistake in your code so recheck the code , if your image is in JPEG format then possible code is
< img src=“myImg.jpeg” alt=“”>
I hope your problem will be solved after this.