Home > database >  Where can I host an image for use in my web page?
Where can I host an image for use in my web page?

Time:06-08

I am making a HTML email. I want my png image to be formatted in a hyper link like:

<img src="https://www.w3schools.com/images/w3schools_green.jpg"> 

Where can I upload my png image to get a link like above that ends in .png?

I know I can upload my png to files and grab it in files using HTML but I want everything to just be in one file.

CodePudding user response:

Imgur is free and reliable. Alternatively, just put the image next to your html file and then set the url to just the name of the image

<img src="w3schools_green.jpg"> 

CodePudding user response:

Have you tried using google drive? You can upload your images there and then use its link in the HTML. Here is an explanation of how to do it How do I display images from Google Drive on a website?

  • Related