+ 3
How to put a picture from my gallery into a code.
4 Antworten
+ 10
Upload it to Dropbox ou imgbb and copy the link
https://www.sololearn.com/discuss/1054246/?ref=app
//Go through the code in the above thread
https://code.sololearn.com/Wy3lrXNwGsgJ/?ref=app
// www.imgbb.com ~ Best
You have asked the similar question twice//
Delete this
+ 1
Thanks so much 🤗🤗🤗
0
First of all, create a folder for that page. Then add the image/audio/video or whatever file you need to the folder so as to ease the stress of linking the file from the root directory.
The you can use the appropriate tag to link the file to your site. For example. ..
<img src ="myImage.png" />
If you have to add the image into a folder in your parent folder, make use of the forward-slash
Eg.
<img src="images/myImage.png"/>
If you don't get this on first trial, just mess around with the code till you get it right.
I hope you understand. ...