Tags
HTML , AJAX
Asked 2 years ago
18 Apr 2022
Views 437
jignesh

jignesh posted

HTML : How to show the little hand on <a> href link

how to put the little hand on the a href when i mouse over it
what css need to apply for little hand on the <a href></a> ?

<a href="#">My name is Sa</a> 
eclipse-learner

eclipse-learner
answered Apr 18 '22 00:00


CSS :

a { cursor: pointer; }


make CSS by <a> tag, give cursor have properties pointer.
Post Answer