The download links do not work on my tablet or smartphone

0

Links like:

<a target= '_blank' class="enlacedescarga" href="
https://mega.nz/#!qNNUwQTa!w4c-1GZ_9XUNtdy_fqN-UGAFNi6LTgsGh8vliNORnvs
">Se busca banda</a>

They work for me on PC but not on tablet.

What change do I have to make to html or css to work?

    
asked by Rafael Hernández 22.10.2016 в 19:11
source

1 answer

1

This is wrong:

<a
 target= '_blank'
 class="enlacedescarga"
 href="https://mega.nz/#!qNNUwQTa!w4c-1GZ_9XUNtdy_fqN-UGAFNi6LTgsGh8vliNORnvs"
>Se busca banda</a>

It should be written like this:

<a
 href="https://mega.nz/#!qNNUwQTa!w4c-1GZ_9XUNtdy_fqN-UGAFNi6LTgsGh8vliNORnvs"
 target="_blank"
 class="enlacedescarga"
>Se busca banda</a>
    
answered by 23.10.2016 в 10:15