How to remove the line under the text link?

<a href="soft1.html"><font color="#000000">ัะพั„ั‚</a> 

Tell me please.

    2 answers 2

    in css write:

     a { text-decoration: none; } 

    still font tag close.

    • or you can write it together - 4yvak95
    • <a href="soft1.html" style="color: #000; text-decoration: none;"> software </a> or <a href = "soft1.html" style = "text-decoration: none;" > <font color = "# 000000"> software </ font> </a> the first option is better. - Gene Ant
     <a href="soft1.html" style="color: #000; text-decoration:none;">ัะพั„ั‚</a> 

    And read about CSS in more detail.