Delivery Note template add the footer details

I Attached the image below. add the below details to the footer level.

please add it on the letterhead according to the scenario.

I want html code to the attached image details

You can develop using HTML your own way.

Sample:

<div style="border: 1px solid #000; padding: 10px;">
    <p>Received in good order, condition and correct quantities</p>
    <table style="width: 100%; border-collapse: collapse;">
        <tr>
            <td style="width: 40%;">
                <p>Received By (Print Name)</p>
                <p>______________________________</p>
            </td>
            <td style="width: 20%;"></td>
            <td style="width: 40%; text-align: right;">
                <p>COMPANY STAMP</p>
            </td>
        </tr>
        <tr>
            <td style="width: 40%;">
                <p>Signed</p>
                <p>______________________________</p>
            </td>
            <td style="width: 20%;"></td>
            <td style="width: 40%; text-align: right;">
                <p>Date</p>
                <p>______________________________</p>
            </td>
        </tr>
    </table>
</div>