+ 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
11 Respostas
+ 4
+ 3
Nobody can see what code you tried. Show your code.
+ 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
+ 2
Link your code.
+ 2
I also face this problem everytime.I cant add images by url.
+ 1
can anyone help me with html
+ 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.
+ 1
I have an image link something like this:
https://www.dropbox.com/scl/fi/ezdu3u1dex5wpqzrhd2w5/dhiva-krishna-X16zXcbxU4U-unsplash.jpg?rlkey=iw4qefivo2e7vl6mf0z62c4jp&dl=0
Which I have got from Dropbox but when used in the code like:
<img src='' https://www.dropbox.com/scl/fi/ezdu3u1dex5wpqzrhd2w5/dhiva-krishna-X16zXcbxU4U-unsplash.jpg?rlkey=iw4qefivo2e7vl6mf0z62c4jp&dl=0''>
It still don't work.Plz help
+ 1
Carefully read: It's raw=1, not dl=0
https://www.dropboxforum.com/t5/Create-upload-and-share/How-do-I-embed-images-with-a-direct-link-from-Dropbox/td-p/245432
+ 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).
0
Please help me I don't know how to make a program