<!DOCTYPE html> <html> <head> <style> body {margin:25px;} div.polaroid { width: 70%; background-color: skyblue; box-shadow: 0 5px 7px 0 rgba(0, 0, 0, 0.2), 0 5px 24px 0 rgba(0, 0, 0, 0.19); margin-bottom: 20px; } div.container { text-align: center; padding: 12px 25px; } </style> </head> <body> <h2>Responsive Polaroid Images / Cards</h2> <div class="polaroid"> <img src="examples/resources/tajmahal.png" alt="Tree" style="width:100%"> <div class="container"> <p>Tajmahal</p> </div> </div> <div class="polaroid"> <img src="examples/resources/tajmahal.png" alt="Tajmahal" style="width:100%"> <div class="container"> <p>Tajmahal</p> </div> </div> </body> </html>