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

26th Apr 2018, 4:18 PM
Bush
Bush - avatar
2 Antworten
+ 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.
26th Apr 2018, 4:28 PM
synorax
synorax - avatar
+ 2
And to open pages in new tab - add target="_blank" attribute in anchor tag. <button><a href="contact.html" target="_blank">Contact</button>
26th Apr 2018, 4:58 PM
Rhythm Khandelwal