I want to place the first line of text on top of an image that is displayed at the top of the page, followed by additional text below it. How can I achieve this using CSS 2 to ensure compatibility with older devices?
<html>
<head>
<title></title>
<style>
p.image {
text-indent: 0;
text-align: center;
}
p.image img {
max-width: 100%;
}
</style>
</head>
<body>
<p class="image"><img src="image.png"/></p>
<h2>Title<br/>
title</h2>
<p>Lorem ipsum.</p>
</body>
</html>