+ 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
16 Réponses
+ 6
Use the <img> tag and set the src-attribute to a valid online image.
+ 6
Here one example more. Hope, this will additional help you:
https://code.sololearn.com/WSLZPpBIFgr7/?ref=app
+ 3
Harsh SOMPURA
use this..
<img src="https://www.pepsi.com/en-us/uploads/images/can-pzs.png">
your mistake is= "" ..",use only ones."...."
+ 3
Kindly read the previous comments before posting in the thread. Avoid repeating the answers of your foreposters.
+ 2
But how to take image at upper side ?
+ 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
+ 1
Wait let me try
+ 1
Done Thankyou
+ 1
Not happening
+ 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..
+ 1
Welcome buddy you are a genius!
+ 1
Yes
0
Online img needed to work use the src ="input online image" 👍👍👍
0
use the <img> tag but note its not a closed tag and you need to use the src attribute, after <img src=" " then>
- 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">
- 2
<!DOCTYPE html>
<html lang="en">
<head>
<title>title of page</title>
</head>
<body>
<img src=""><!-- add source of image-->
</body>
</html>