css link style code example
Example 1: add stylesheet html
<link rel="stylesheet" type="text/css" href="style.css">
Example 2: css link
<link href="main.css" rel="stylesheet">
Example 3: link style css to html
<link rel="stylesheet" type="text/css"href="style.css">
Example 4: stylesheet css
<style></style> or
<link rel="stylesheet" href="style.css">
Example 5: css a link style
a:link { color: #000; text-decoration: none; border: none; }
a:visited { color: #000; }
a:hover { color: #000; border: none; }
a:active { color: #000; }
Example 6: css how to style a
a:link{
color: green;
}
a:visited{
color: purple;
}
a:hover{
color: yellow;
}
a:active{
color: brown;
}