Zararlı Bağlantılar

<p id="dosya-icerigi">Dosya içeriği burada görünecek...</p>

<script>
fetch('https://www.usom.gov.tr/url-list.txt')
.then(response => response.text())
.then(data => {
document.getElementById('dosya-icerigi').innerText = data;
})
.catch(error => {
document.getElementById('dosya-icerigi').innerText = 'Dosya yüklenemedi: ' + error;
});
</script>