hover pics

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photo Gallery</title>
<style>
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
  }
  .thumbnail {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .thumbnail img {
    width: 100%;
    height: auto;
  }
  .thumbnail:hover {
    transform: scale(1.99);
  }
</style>
</head>
<body>
<div class="gallery">
  <a class="thumbnail" href="https://hewscity.s3.ap-south-1.amazonaws.com/mscollege/web/2023/08/IMG_3389.jpg
" target="_blank">
    <img src="https://hewscity.s3.ap-south-1.amazonaws.com/mscollege/web/2023/08/IMG_3389.jpg
" alt="Thumbnail 1" loading="lazy">
  </a>
 
  <a class="thumbnail" href="https://hewscity.s3.ap-south-1.amazonaws.com/mscollege/web/2023/08/IMG_3405.jpg
" target="_blank">
    <img src="https://hewscity.s3.ap-south-1.amazonaws.com/mscollege/web/2023/08/IMG_3405.jpg
" alt="Thumbnail 1" loading="lazy">
  </a>
 
  <!-- Add more thumbnails here -->
</div>
</body>
</html>
 


© 2024 All Rights Reserved Terms of Use and Privacy Policy