Day 18: HTML इमेज गैलरी बनाना
असाइनमेंट:
इमेज गैलरी
.gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}
.gallery img {
width: 100%;
height: auto;