0
How can I create a Link for my picture?
Can anyone explain me how I can create a link for my own picture so that I can implement it in my HTML program?
10 odpowiedzi
+ 10
When you are using it in sololearn playground, you need to upload your picture in any uploading platform like https://imgbb.com and then copy the link and then paste it in your code
+ 4
Lukas Sch. You create an html document, write a declaration there and so on, add your photos through the <img> tag, name the page, for example, the second page.html. In the first, you write <a href="second page.html"> my photos </a>. You need two pages to be in the same folder on your pc. This is how multi-page sites are made.
+ 3
Do you want a picture link, or so when you click on the link you go to a new page where was your photo?
+ 1
Lukas Sch. Create a second html page, put a photo there. In the first page, make a link to the second. You can throw a photo in the cloud and make a link to the cloud.
+ 1
You can create like this
<a href="#"><img src="your_image_link" alt=""/></a>
+ 1
Ok thanks!
0
I don't understand how to do that with the second html page. How can I put my pictures inside there?
0
what do you mean when say second html page?
0
let’s say you have a paga where you have a link to the second page where is located your images, yes?
- 1
In HTML you can import pictures through links. That's what I want to do for my own pictures. But for that my pictures have to have a link.