+ 5
Image related html
<img src ="photo.jpg" alt ="ut"/> Where should be the photo be saved to use this
8 Answers
+ 7
You can post the photo to imgur , then copy the link , paste it where you want , and add the .jpg extension.
Example :
<img src="imgur/A2di6gR.jpg">
#NotRealLink
+ 6
hi Sanu Kumar
you should save the photo in the same file as your html document.
+ 5
Suppose you are creating a GitHub repository (or even a folder on your computer) with the files and you're storing the image in a folder, you're essentially just tracking the relative path.
Say your repo looks like:
Project
|----photo.jpg
|----main.html
|----Inner
|----photo2.jpg
Then, inside main.html,
<img src="photo.jpg"/>
<img src="Inner/photo2.jpg"/>
+ 3
If we are using this in solo learn app then where to save
+ 3
sorry to say but i donât think you can put images from your phone on the SL app you can only put images from the internet
+ 3
Ok thanks
0
<img src="picture.jpg">picture.jpg is located in the same folder as the current page
<img src="images/picture.jpg"> picture.jpg is located in the images folder in the current folder
<img src="/images/picture.jpg"> picture.jpg is located in the images folder at the root of the current web
<img src="../picture.jpg"> picture.jpg is located in the folder one level up from the current folder
0
<img src="bird.png"> is used in the html đ»