AK LASBELA, PK55 GM LS1 AK LS2 LS3
document.addEventListener("DOMContentLoaded", function() {
var entryContent = document.querySelector('.entry-content.cf');
var linkElement = document.createElement('a');
linkElement.href = 'https://www.yourwebsite.com'; // Replace with your URL
linkElement.target = '_blank';
linkElement.textContent = 'Visit Our Website';
linkElement.style.cssText = 'display:block; background: #fff; padding: 5px 10px; width: 100%; text-align: center;';
entryContent.parentNode.insertBefore(linkElement, entryContent.nextSibling);
});