.container-img {
  position: relative;
  text-align: center;
  color: white;
}
/* Bottom left text */
.text-bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.text-top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Top right text */
.text-top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

/* Bottom right text */
.text-bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.text-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*
<div class="container-img">
  <img src="img_snow_wide.jpg" alt="Snow" style="width:100%;">
  <div class="text-bottom-left">Bottom Left</div>
  <div class="text-top-left">Top Left</div>
  <div class="text-top-right">Top Right</div>
  <div class="text-bottom-right">Bottom Right</div>
  <div class="text-centered">Centered</div>
</div>
*/