Guys please how do i link up an image in my folder to my tribute project?

<img scr="?"
please help me out here.

Could you give more details in what you want to do?

1 Like

I’m guessing what you mean, but, it depends on your file structure.
Just a couple of examples using jpg as the extension.

If images are in the same (root) folder as the web page file:
image
<img src="image.jpg">

If my images are in a different folder inside the root folder:

image
<img src="images/image.jpg">

But, if you use Code Pen, you’ll need to upload your images there as well, or host them on a different server. If you host on a different server, you’ll use the URL of the image.
<img src="https://website.com/the-rest-of-the-url">

Thanks alot.
Any idea as to how i can upload an image on codepen?

Pay for CodePen Pro or get some cheap / free webhosting and link to your images using the url,
or you can try these search results. Qwant is a privacy-focused search engine.
https://www.qwant.com/?q=upload+images+to+codepen

You can put the image on Google Drive, right click on it and get the shareable link of the picture.
The url will be something like this: https://drive.google.com/open?id=veeeeeryLongString
When you put the url in the src attribute of the img element, change the “open” in the url into “uc”, making it: https://drive.google.com/uc?id=veeeeeryLongString

1 Like