Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

how to set link as normal text in html

You can make a link look like normal text by setting color and removing text underline and even change the cursor.
a {
color: black;
text-decoration: none;
cursor: auto;
}
 
PREVIOUS NEXT
Tagged: #set #link #normal #text #html
ADD COMMENT
Topic
Name
7+8 =