Trouble in Insertion of Image in html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Trouble in Insertion of Image in html

Why I'm not able to insert an image in HTML code I've used proper tag and elements

28th Dec 2020, 4:54 PM
Sharvil Khot
6 Answers
+ 8
Use this url https://upload.wikimedia.org/wikipedia/commons/9/92/Avicii_2014_003.jpg https://www.sololearn.com/discuss/2390690/?ref=app Edit: You used url of the web page. That's why it didn't work. long press the image -> view/open image -> copy the url and paste it This is what I already mentioned above :)
28th Dec 2020, 5:45 PM
Simba
Simba - avatar
+ 3
Simba I don't know how to post it there. So I copied and paste my code here <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <img src="https://images.app.goo.gl/qE35qAY8dT6bhLyX8" alt="Avicii" width="500" height="600"> </body> </html>
28th Dec 2020, 5:07 PM
Sharvil Khot
+ 3
Onur Can Gündoğdu check out above code. Is there any mistake?
28th Dec 2020, 5:08 PM
Sharvil Khot
+ 3
Simba yeah it's works thank you so much! Can I know how to use this link for other images? Or what did you did?
28th Dec 2020, 5:18 PM
Sharvil Khot
+ 2
Thank you people. 🤩🤩🤩🤩
31st Dec 2020, 11:46 AM
Elizabeth Munanye
Elizabeth Munanye - avatar
+ 1
You have a mistake on src attribute of img tag
28th Dec 2020, 5:00 PM
Onur Can Gündoğdu
Onur Can Gündoğdu - avatar