In this article, you learn How to Create Image Gallery in HTML. Follow the Example.Example:-gallery.html<html> <head> <title>Image Gallery</title> <link rel="stylesheet" href="style.css"/> </head> <body> <div class="gallery"> <a target="_blank" href="img_one.jpg"> <img src="img_one.jpg" alt="img_one" width="500" height="300"> </a> <div class="descr">Image One</div> …
In this article, you learn How to Create Image Gallery in HTML. Follow the Example.
Example:-
gallery.html
<html> <head> <title>Image Gallery</title> <link rel="stylesheet" href="style.css"/> </head> <body> <div class="gallery"> <a target="_blank" href="img_one.jpg"> <img src="img_one.jpg" alt="img_one" width="500" height="300"> </a> <div class="descr">Image One</div>