I want to create a button in html and CSS that linked to a website By pressing the button it would linked me to other website
I tried the <a>
tag but it only linked me to other pages not a whole other website
I want to create a button in html and CSS that linked to a website By pressing the button it would linked me to other website
I tried the <a>
tag but it only linked me to other pages not a whole other website
It sounds like you're running into this problem because you tried using the <a> tag with a relative URL as opposed to an absolute one. An absolute URL requires the whole thing, including "http(s)://www.". If you add all of it to the href in the <a> tag, you should be able to redirect externally.
Example if you wanted to redirect to Stack Overflow:
<a href="https://www.stackoverflow.com/" class="button">Stack Overflow</a>
Similar question asked here