+ 1

HTML

Hey there I have been having difficulties to load images in my html code.I am not getting their url and when I am done it is not loding.Just and ugly logo of am image appears on the screen.I have changed my IDEs several times but it was useless. Please help me

2nd Jun 2024, 8:12 AM
Aryan Kadam
Aryan Kadam - avatar
11 Answers
+ 3
Nobody can see what code you tried. Show your code.
2nd Jun 2024, 10:06 AM
Lisa
Lisa - avatar
+ 3
!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <img src= https://dl.dropbox.com/scl/fi/ezdu3u1dex5wpqzrhd2w5/dhiva-krishna-X16zXcbxU4U-unsplash.jpg </body> </html> This is the code I have modified the link as suggested plz help me it is still not working
3rd Jun 2024, 7:42 AM
Aryan Kadam
Aryan Kadam - avatar
+ 2
Link your code.
2nd Jun 2024, 8:28 AM
Lisa
Lisa - avatar
+ 2
I also face this problem everytime.I cant add images by url.
2nd Jun 2024, 3:50 PM
Coder Dipak
Coder Dipak - avatar
+ 1
can anyone help me with html
2nd Jun 2024, 10:17 PM
azzaldin mohammed
azzaldin mohammed - avatar
+ 1
Coder Dipak and azzaldin mohammed, look in the forum and in the code playground for previous posts and codes, there are many which can help you. If you're still not getting it to work, create your own forum question and add your code bit as per the instructions in the my response above.
3rd Jun 2024, 6:52 AM
Ausgrindtube
Ausgrindtube - avatar
3rd Jun 2024, 8:13 AM
Aryan Kadam
Aryan Kadam - avatar
+ 1
Make sure the path to your image file is correct, If the image is in the same directory as your HTML file: <img src="image.jpg" alt="Description"> - If the image is in a subfolder called "images": <img src="images/image.jpg" alt="Description"> make sure the file extension in the `src` attribute matches the actual file extension (e.g., `.jpg`, `.png`). File names are case-sensitive. make sure the filename and extension match exactly. For images hosted online, use the full URL: <img src="https://example.com/image.jpg" alt="Description"> ``` Troubleshoot with Browser Tools - Right-click on the page and select "Inspect". - Go to the "Network" tab. - Reload the page and check if the image request returns a 404 error (file not found).
4th Jun 2024, 12:26 AM
Zaim Aalam
Zaim Aalam - avatar
0
Please help me I don't know how to make a program
3rd Jun 2024, 8:35 PM
Nahid Talash
Nahid Talash - avatar