Forum Moderators: not2easy
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<style>
.parent {
margin-left: auto;
margin-right: auto;
width: 1000px;
text-align: center;
}
div.img {
margin: 5px;
padding: 5px;
border: 1px solid #0000ff;
display:inline-block;
}
div.desc {
font-weight: normal;
width: 120px;
margin: 5px;
}
</style>
<title>test</title>
</head>
<body>
<div class="parent">
<div class="img">
<img src="image1.jpg" alt="" />
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<img src="image2.jpg" alt="" />
<div class="desc">Add a description of the image here</div>
</div>
<div class="img">
<img src="image3.jpg" alt="" />
<div class="desc">Add a description of the image here</div>
</div>
</div>
</body>
</html>