+ 3
How can i put pictures on my web page?
74 Réponses
+ 14
<img src="picture_name.png" />
You can resize it like this:
<img src="picture_name.png" width=50 height=25 />
+ 9
<img src="picture.png">
Instead of picture.png write the name of your picture 😊👍
+ 7
First resize the image as <img src= "image_name.png" height=50 width=50/> further you can refer from the site https://www.geeksforgeeks.org/
+ 6
By img tag and use alt=name of the image because in case image not opening in ur browser then name of image show.
+ 5
This is a duplicate question which by using the searchbar led me to a plethora of similar post.
Please use the searchbar as this reduces duplication and will solve your issue quicker.
Thanks and happy coding Yash Samdadia
https://www.sololearn.com/discuss/160963/?ref=app
https://www.sololearn.com/discuss/915161/?ref=app
https://www.sololearn.com/discuss/2078873/?ref=app
https://www.sololearn.com/discuss/174308/?ref=app
https://www.sololearn.com/discuss/734227/?ref=app
https://www.sololearn.com/discuss/1271758/?ref=app
https://www.sololearn.com/discuss/291914/?ref=app
+ 3
Copy the link and past in the comment 😁
+ 3
I am haveing trouble developing a self sustanable ai. There are too many ifs and buts
+ 3
Use img src tag and define ur image link/url in double quotes
+ 3
<img src=" past your copied image link here" />
+ 3
How to not Google
+ 3
<I'm src="picture_name.png"/>
+ 2
After that what to do?
+ 2
It is not showing picture on my web page
+ 2
Ok
+ 2
How to show the code?
+ 2
Actually I am doing it on my PC
+ 2
So, just copy your code and past here😝
+ 2
How are you?
+ 2
If the picture is not in the same destination as your .htm or .html file your picture will not be shown so you can point out your destination of picture by <img src="/downloads/images/picture.jpg"> . Or you can put your .html or .htm code and pictures in the same folder and just point out the picture in the code with <img src="picture.jpg">. I hope this might help you.