<!DOCTYPE html>
<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="/i/photo/tulip-yellow.jpg">
<img src="/i/photo/tulip-yellow.jpg" alt="Cinque Terre" width="600" height="400">
</a>
<div class="desc">在此处添加图像描述</div>
</div>
<div class="gallery">
<a target="_blank" href="/i/photo/tulip-red.jpg">
<img src="/i/photo/tulip-red.jpg" alt="Forest" width="600" height="400">
</a>
<div class="desc">在此处添加图像描述</div>
</div>
<div class="gallery">
<a target="_blank" href="/i/photo/flower-1.jpg">
<img src="/i/photo/flower-1.jpg" alt="Northern Lights" width="600" height="400">
</a>
<div class="desc">在此处添加图像描述</div>
</div>
<div class="gallery">
<a target="_blank" href="/i/photo/flower-2.jpg">
<img src="/i/photo/flower-2.jpg" alt="Mountains" width="600" height="400">
</a>
<div class="desc">在此处添加图像描述</div>
</div>
</body>
</html>