A simple web application that allows users to insert images by URL, display them in a gallery, and copy the image URL by clicking on the image. Images are saved in the browser's localStorage so they persist across page reloads.
- Insert images using their URL.
- Display images in a responsive gallery.
- Click an image to copy its URL to the clipboard.
- Images are saved locally in the browser (localStorage) for persistence.
Enter an image URL, click Add Image, and the image will appear below. Clicking an image copies its URL.
- Clone or download this repository.
- Open
index.htmlin your browser. - Enter an image URL in the input box and click Add Image.
- Click any image in the gallery to copy its URL.
project-folder/
│
├── index.html # Main HTML page
├── style.css # External CSS file
└── README.md # Project documentation
- HTML5
- CSS3 (external stylesheet)
- JavaScript (for interactivity and localStorage)
- Only images accessible via URL can be added.
- Images are stored in the browser’s localStorage, so clearing browser data will remove saved images.