<!DOCTYPE html> <html> <head> <style> .container { position: relative; } .topleft { position: absolute; top: 8px; left: 16px; font-size: 18px; } .topright { position: absolute; top: 8px; right: 16px; font-size: 18px; } img { width: 100%; height: auto; opacity: 0.3; } </style> </head> <body> <h2>Image Text</h2> <p>Center text in image:</p> <div class="container"> <img src="examples/resources/tajmahal.png" alt="Cinque Terre" width="1000" height="300"> <div class="topleft">topleft</div> <p>Image on Topright</p> <div class="container"> <img src="examples/resources/tajmahal.png" alt="Cinque Terre" width="1000" height="300"> <div class="topright">topright</div> </div> </body> </html>