0
How to create a hyperlink in body of the page using css
4 Respostas
+ 2
What do you mean ?
Like it'll redirect to link wheveever you click at the webpage ?
+ 1
Idk if its possible using css
But using you can create a link using <a> and work on its shape using css
<a href="#" class="coinbtn">coin</a>
Or using js, by adding onclick to your element, like <div onclick="coin()">
And the js
function coin(){
window.location="newlink"
}
0
it should be like"To collect more coins CLICK HERE" and CLICK HERE should redirect to other page
0
Ok thanks..
I will try