+ 6
How to make a link non-underline
Hey guys! I just wonder if you could help me with this problem. I want to make a link in HTML but without any underlineâ¤ď¸
8 Answers
+ 7
Hi Hosein Khoojooyan
To make a link not underlined you need to use CSS
external CSS (example with class name link)
.link {
text-decoration: none;
}
Here is the lesson on the last page:
https://www.sololearn.com/learn/CSS/1109/
+ 3
Type this in css file
a {
text-decoration: none;
}
If you want directly in HTML:
<a href="#" style="text-decoration: none">Link</a>
+ 3
Use css text-decoration prop
CSS:
#myLink{
text-decoration:none;
}
HTML:
<a id="myLink" href="http://www.google.it">Google</a>
+ 3
Thank you very muchđ
+ 2
Aria
in html using internal CSS
I call the "a" attribute
a{text-decoration:none;color:teal}
I can also change the color
a{color:teal;}
the text decoration color can also be changed {text-decoration-color:blue}
+ 1
give its text-decoration:none in css style
+ 1
a{
text-decoration:none
}
0
Guys please give 5 upvote to my questionđđđ