Image Gallery
Thư viện hình ảnh sau được tạo bằng CSS:
<html> <head> <style> div.gallery { margin: 5px; border: 1px solid #ccc; float: left; width: 180px; } div.gallery:hover { border: 1px solid #777; } div.gallery img { width: 100%; height: auto; } div.desc { padding: 15px; text-align: center; } </style> </head> <body> <div class="gallery"> <a target="_blank" href="#"> <img src="https://truonghoclaptrinh.com/images/blog/lap-trinh-web.jpg" alt="truonghoclaptrinh" width="600" height="400"> </a> <div class="desc">Mô tả hình ảnh</div> </div> <div class="gallery"> <a target="_blank" href="#"> <img src="https://truonghoclaptrinh.com/images/blog/lap-trinh-web.jpg" alt="truonghoclaptrinh" width="600" height="400"> </a> <div class="desc">Mô tả hình ảnh</div> </div> <div class="gallery"> <a target="_blank" href="#"> <img src="https://truonghoclaptrinh.com/images/blog/lap-trinh-web.jpg" alt="truonghoclaptrinh" width="600" height="400"> </a> <div class="desc">Mô tả hình ảnh</div> </div> <div class="gallery"> <a target="_blank" href="#"> <img src="https://truonghoclaptrinh.com/images/blog/lap-trinh-web.jpg" alt="truonghoclaptrinh" width="600" height="400"> </a> <div class="desc">Mô tả hình ảnh</div> </div> </body> </html>