pls how do i add picture to my codepen project
It is not clear what you mean. To add an image:
<img src="url">
This is pretty straightforward. The issue with codepen is that you have to store the images somewhere. In a “normal” web site, you’d have the option of storing the files where you serve your site. This won’t work with codepen - at least the free version won’t let you store extra files. So, you’ll have to store them somewhere else. So, you can use an already existing image, or find some storage on the internet to store and serve your images, like Google Photos or an Amazon S3 bucket - there are many options.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.