+ 3
How do you make a link in html?
I want to make a link so if I click"click" I will go to the site:wwwsololearn......
4 Answers
+ 9
You didn't complete the course đ
https://www.sololearn.com/learn/HTML/1031/
+ 5
Leon Yang Using CSS,
text-decoration: none;
+ 4
is there any way to remove the blue underline
+ 1
To remove the blue underline add this to your css file:
a:link{
text-decoration:none;
}