What could be causing the signature to be displayed above the actual text content on the webpage?

The issue of the signature being displayed above the actual text content on the webpage could be caused by the signature HTML element being placed before the text content in the code. To solve this issue, the signature HTML element should be placed after the text content in the code. This will ensure that the text content is displayed first on the webpage followed by the signature.

<?php
// Display text content
echo "<p>This is the text content of the webpage.</p>";

// Display signature
echo "<p>Signature</p>";
?>