Answers for "how to remove # in a href"

CSS
6

removeable hyperlink line html

<a href="http://yoursite.com/" style="text-decoration:none">yoursite</a>
Posted by: Guest on April-25-2020
0

remove basic html style link

a {
  color: blue;
  text-decoration: none; /* no underline */
}
Posted by: Guest on January-08-2021

Browse Popular Code Answers by Language