I am trying to put some text over an image in the middle of a page.
I saw an example like this:
<img src="image.png" style="z-index: -1;" />
<p style="position: absolute; top: 1px; left: 1px;>text</p>
but when i try to center it the text will not be in the center.
<div>
<center>
<img src="image.png" style="z-index: -1;" />
<p style="position: absolute; top: 1px; left: 1px;>text</p>
</center>
</div>
How can i create a text over image without absolute possition?