0
How to I make a separate page
So if I click on a button it takes me to a separate page that I own
2 ответов
+ 3
Use this tag in the html on the page you want the button.
<a href="pages/new page.html">Link Here</a>
the href should be the path to the folder where the New page is. You can also replace the Link Here text with whatever you want, like a button.
+ 2
And to open pages in new tab - add target="_blank" attribute in anchor tag.
<button><a href="contact.html" target="_blank">Contact</button>