Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
HTML
<script type="text/javascript">
    // Intentar redireccionar inmediatamente
    window.location.href = "https://www.portalminero.com/wp/datos-metales/?metal=Cobre";
    
    // Respaldo en caso de que lo anterior falle
    document.addEventListener("DOMContentLoaded", function() {
        window.location.href = "https://www.portalminero.com/wp/datos-metales/?metal=Cobre";
    });
</script>
<!-- Mensaje por si JavaScript está desactivado -->
<div style="padding: 20px; border: 2px solid #FF5630; background-color: #FFEBE6; text-align: center; margin: 20px 0;">
    <h1 style="color: #DE350B;">Esta página ha sido movida</h1>
    <p style="font-size: 16px; margin: 15px 0;">Si no eres redirigido automáticamente, haz clic en el siguiente enlace:</p>
    <p style="margin: 15px 0;">
        <a href="https://www.portalminero.com/wp/datos-metales/?metal=Cobre" style="background-color: #0052CC; color: white; padding: 10px 15px; text-decoration: none; border-radius: 3px; font-weight: bold;">Ir a la nueva ubicación</a>
    </p>
</div>