How can I insert image through html? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I insert image through html?

I have an image file named Mushu.jpg.How can I insert this image on my coding?

4th Mar 2021, 3:32 PM
Tasmim Jahan
Tasmim Jahan - avatar
2 Answers
+ 1
If your image is on the computer use: <body> <img src="c:/users/mittzimo/desktop/mushy.jpg"> </body> # replace mittzimo with your computer username If your image is on the web use: <body> <img src="http://www.sololearn.com/images/mushy.jpg" alt="" /> </body>
4th Mar 2021, 4:23 PM
Steve Nova
Steve Nova - avatar
+ 2
Hi! Where is your image and your coding is situated? Images in HTML https://developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Images_in_HTML Upload content with Dropbox [Tutorial] https://code.sololearn.com/WW6t4B73kJVz/?ref=app
4th Mar 2021, 3:39 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar