I need help removing the underline from links on a website. I attempted to use "text-decoration: none;" but it didn't work. Could someone point out what syntax mistake I made? Or perhaps suggest a better way to eliminate the underline?
<head>
<style>
font {
color: #ff9600;
text-decoration: none;
}
</style>
</head>
<body>
<a href="index.html">
<font>Home</font>
</a>
<a href="watch.html">
<font>Watch</font>
</a>
<a href="info.html">
<font>Info</font>
</a>
</body>