Posts

Showing posts from February, 2023

How to crate a photo collection gallery in using HTML, CSS & Javascript ?

How to crate a photo collection gallery  in using HTML, CSS & Javascript ? Example of Code :  <!DOCTYPE html> <html> <head>   <title>Photo Gallery</title>   <style>     /* Styles for the photo gallery */     .photo-gallery {       display: flex;       flex-wrap: wrap;       justify-content: center;     }          .photo {       margin: 10px;       border: 2px solid #333;       border-radius: 10px;       box-shadow: 5px 5px 10px #888888;       overflow: hidden;       cursor: pointer;     }          .photo img {       width: 100%;       heigh...