How can i add img on html in solo learn app | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

How can i add img on html in solo learn app

I don't know how to add img in sololearn app https://code.sololearn.com/WTGcApZPKW9n/?ref=app

30th Jan 2023, 1:51 PM
Harsh SOMPURA
Harsh SOMPURA - avatar
16 Answers
+ 6
Use the <img> tag and set the src-attribute to a valid online image.
30th Jan 2023, 1:55 PM
Lisa
Lisa - avatar
+ 6
Here one example more. Hope, this will additional help you: https://code.sololearn.com/WSLZPpBIFgr7/?ref=app
30th Jan 2023, 3:43 PM
JaScript
JaScript - avatar
+ 3
Harsh SOMPURA use this.. <img src="https://www.pepsi.com/en-us/uploads/images/can-pzs.png"> your mistake is= "" ..",use only ones."...."
30th Jan 2023, 1:57 PM
Darpan kesharwani🇮🇳[Inactive📚]
Darpan kesharwani🇮🇳[Inactive📚] - avatar
+ 3
Kindly read the previous comments before posting in the thread. Avoid repeating the answers of your foreposters.
31st Jan 2023, 5:05 PM
Lisa
Lisa - avatar
+ 2
But how to take image at upper side ?
30th Jan 2023, 2:22 PM
Harsh SOMPURA
Harsh SOMPURA - avatar
+ 2
<html> <head> <title>first page</title> </head> <body> <img src="https://i.postimg.cc/QdL561Zs/itachi.jpg"alt= "" /> </body> </html> For adding img link use post image which help to get image link
31st Jan 2023, 7:14 AM
Zeeshan Khan
Zeeshan Khan - avatar
+ 1
Wait let me try
30th Jan 2023, 2:00 PM
Harsh SOMPURA
Harsh SOMPURA - avatar
+ 1
Done Thankyou
30th Jan 2023, 2:03 PM
Harsh SOMPURA
Harsh SOMPURA - avatar
+ 1
Not happening
30th Jan 2023, 2:32 PM
Harsh SOMPURA
Harsh SOMPURA - avatar
+ 1
Harsh SOMPURA Read the proper tags,syntaxes than make projects Read lessons again.. https://www.sololearn.com/course/HTML See this.. https://code.sololearn.com/WzQSpaa9Vymb/?ref=app Change the number according to you..
30th Jan 2023, 2:36 PM
Darpan kesharwani🇮🇳[Inactive📚]
Darpan kesharwani🇮🇳[Inactive📚] - avatar
+ 1
Welcome buddy you are a genius!
30th Jan 2023, 2:39 PM
Harsh SOMPURA
Harsh SOMPURA - avatar
+ 1
Yes
30th Jan 2023, 3:55 PM
Harsh SOMPURA
Harsh SOMPURA - avatar
0
Online img needed to work use the src ="input online image" 👍👍👍
31st Jan 2023, 1:50 PM
Tarib Nuhu
Tarib Nuhu - avatar
0
use the <img> tag but note its not a closed tag and you need to use the src attribute, after <img src=" " then>
31st Jan 2023, 4:15 PM
Salifu Kamal-Deen
Salifu Kamal-Deen - avatar
- 1
Of course, use <img>, but add some in it. Ex: <img src=“https://www.linkpicture.com/q/9F275C17-C954-40ED-88B9-C396CA0B879A.jpeg” height="600" width="700" align="right">
31st Jan 2023, 5:07 PM
  - avatar
- 2
<!DOCTYPE html> <html lang="en"> <head> <title>title of page</title> </head> <body> <img src=""><!-- add source of image--> </body> </html>
30th Jan 2023, 4:26 PM
Shaik Habeebulla
Shaik Habeebulla - avatar