IMG: Imagem com Legenda

Texto da Legenda (*)
(*)Woman Walking In The Street During Night Time

css

.img-with-caption {
  position: relative;
}

.img-with-caption img {
  display: block;
  width: 100%;
}

.img-with-caption div {
  position: absolute;
  bottom: 0;
}

html

<div class="img-with-caption">
  <img src="imagem.jpg" >
  <div>
    Algum texto
  </div>
</div>