var link = document.createElement('a'); // Set the href attribute link.href = 'https://consumertrustadvocacy.org/renew'; // Set the link text link.textContent = 'Your membership expired. Please renew here >>'; // Append the link to the body document.body.appendChild(link);