fix an image with html without using css

0

I have this code and I want to put my image in the background but I get 3 and only I have to put 1 background and then with your information that corresponds support please.

<?php

$cuerpo = '<html>
    <head>
    </head>
    <body style="font-family:TitilliumWeb-Regular;color:#006a87">

    <body background="/application/assets/img/PajaroWatermark500x640.png" bgcolor="ffffff"; > 

        <center>
            <div style="width:500px;height:60px;background-color:#ffffff;border-radius:20px">

                <div style="width:100%;height:50px;background-color:#006a87;border-top-left-radius:10px;border-top-right-radius:10px; padding-top:20px;">

                <img style="height:30px "src="http://sandbox.balun.mx/application/assets/img/logof.png" style="margin-top:30px;margin:30px"/>

                </div><br>
                 <img src="http:../application/assets/img/277x50GuiasGeneradas.png" style="margin-top:20px; margin:30px" />
                 <br>
                 <br>

                 <font color=#006a87><b>Se han generado guías en su cuenta, Hemos adjuntado la(s) guía(s) en formato *.PDF</font></b>
                 <br>
                 <br>
                 <br>

                <font color=#006a87><b>Haga click  en el número de guía para rastreo: <a href="http://">32135465</a></b><br>
                <br>
                 <br>
                 <br>

                <p><b>Atentamente</b></p>
                <p><small><b>el equipo de</b> </small> </p>
         <img style="height:20px;widht:20px" src="http:../application/assets/img/277x50Logo.png" style="margin-top:50px" />

            </div>
        </center>
    </body>
</html> ';

    echo  $cuerpo;   ?>
    
asked by Cruz Ruiz Dacr 18.09.2018 в 17:01
source

1 answer

0

This is an example using a high definition image. Try this way.

<html>
    <head>
    </head>
    <body style="font-family:TitilliumWeb-Regular;color:#006a87">

    <body background="https://picsum.photos/1200/1800/?gravity=east"> 

        <center>
            <div style="width:500px;height:60px;background-color:#ffffff;border-radius:20px">

                <div style="width:100%;height:50px;background-color:#006a87;border-top-left-radius:10px;border-top-right-radius:10px; padding-top:20px;">

                <img style="height:30px "src="http://sandbox.balun.mx/application/assets/img/logof.png" style="margin-top:30px;margin:30px"/>

                </div><br>
                 <img src="http:../application/assets/img/277x50GuiasGeneradas.png" style="margin-top:20px; margin:30px" />
                 <br>
                 <br>

                 <font color=#006a87><b>Se han generado guías en su cuenta, Hemos adjuntado la(s) guía(s) en formato *.PDF</font></b>
                 <br>
                 <br>
                 <br>

                <font color=#006a87><b>Haga click  en el número de guía para rastreo: <a href="http://">32135465</a></b><br>
                <br>
                 <br>
                 <br>

                <p><b>Atentamente</b></p>
                <p><small><b>el equipo de</b> </small> </p>
         <img style="height:20px;widht:20px" src="http:../application/assets/img/277x50Logo.png" style="margin-top:50px" />

            </div>
        </center>
    </body>
</html>
    
answered by 18.09.2018 в 19:12