Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Public IP Address</title> | |
</head> | |
<body> | |
<h1>Your Public IP Address</h1> | |
<p id="ip-address">Loading...</p> | |
<script> | |
async function fetchPublicIP() { | |
try { | |
const response = await fetch('https://api.ipify.org?format=json'); | |
const data = await response.json(); | |
document.getElementById('ip-address').textContent = data.ip; | |
} catch (error) { | |
document.getElementById('ip-address').textContent = 'Unable to retrieve IP address'; | |
} | |
} | |
fetchPublicIP(); | |
</script> | |
</body> | |
</html> | |