Answers for "how to link two html pages"

2

how to switch between html pages

function change_page(){
   // similar behavior as an HTTP redirect
   window.location.replace("test.html");
   //or
   // similar behavior as clicking on a link
   window.location.href = "test.html";
};
Posted by: Guest on January-20-2021
0

how do i link two pages in html

<button onclick="location.href='filename.html'">
</button>
Posted by: Guest on February-24-2021
5

a href to other site

<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
  Example Link
</a>
Posted by: Guest on February-01-2020
1

link to external site html

<a href="https://www.example.com">This is a link</a>
Posted by: Guest on August-19-2020

Browse Popular Code Answers by Language