Heading 1
Heading 2
Heading 3
Heading 4
Text-small
Text-xs
Text-tiny
Label
cc-text-main-orange
cc-text-bold
cc-text-white
cc-text-gray
cc-bg-blackG
fetch('https://api.ipify.org?format=json')
.then(response => response.json()) // Convertir la respuesta a JSON
.then(data => {
console.log('Tu IP pública es:', data.ip);
// Mostrar la IP en algún elemento del DOM
document.getElementById('user-ip').textContent = data.ip;
})
.catch(error => console.error('Error al obtener la IP:', error));
//--------------------------------------------------