How to remove the line under the text link?
<a href="soft1.html"><font color="#000000">ัะพัั</a>
Tell me please.
How to remove the line under the text link?
<a href="soft1.html"><font color="#000000">ัะพัั</a>
Tell me please.
in css write:
a { text-decoration: none; }
still font tag close.
<a href="soft1.html" style="color: #000; text-decoration:none;">ัะพัั</a>
And read about CSS in more detail.
Source: https://ru.stackoverflow.com/questions/67989/
All Articles