0
How to load a new webpage using HTML, CSS or JavaScript?
I want to load a new webpage whenever a button is clicked, how to do it?
9 Respostas
+ 2
Or see JavaScript CSS HTML course
+ 1
Do you mean new tab?
If so, then write (in html file):
<a href="yourlink.com" target="_blank">some text</a>
The target="_blank" is the most important thing here
0
Link the new webpage using a tag given you know how to use js or even HTML
0
CodeShow yup, now its correct
0
Thanks for the answer!