Hello

Test

HTML Buttons

JavaScript

hello ----------------

HTML Forms






If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".

/

Redirect to a Webpage

The replace() method replaces the current document with a new one:

location.replace('www.google.com'); ----- window.location.href = 'www.hostinger.com'; ----- function changeLink() { document.getElementById("myAnchor").href = "https://www.google.com"; } function changeLinkAndText() { const link = document.getElementById("myAnchor"); link.href = "https://www.google.com"; link.innerHTML = "Go to Google"; }