<html>
<head>
<style>
.container {
position: relative;
}
.center {
position: absolute;
top: 50%;
width: 100%;
text-align: center;
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="center">В центре</div>
</div>
</body>
</html>