Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style>
.container {
  position: relative;
}
.topleft {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 18px;
}
img {
  width: 100%;
  height: auto;
  opacity: 0.3;
}
</style>
</head>
<body>
<h2>Текст изображения</h2>
<p>Добавьте текст к изображению в верхнем левом углу:</p>
<div class="container">
  <img src="../images/img_5terre_wide.jpg" alt="Cinque Terre" width="1000" height="300">
  <div class="topleft">Слева вверху</div>
</div>
</body>
</html>