styles link css code example
Example 1: text underline hover css
a:hover {
text-decoration: underline;
}
Example 2: how to link css to html
<link rel="stylesheet" href="styles.css">
a:hover {
text-decoration: underline;
}
<link rel="stylesheet" href="styles.css">