<!DOCTYPE html>
<html>
<head><meta http-equiv="content-security-policy" content="script-src 'none'">
<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>