I saw a question regarding CSS Hover inline coding... However I can not find the post.
<html>
<head>
<style>
a:link{ text-decoration: none;
color: red;
}
a:visited{ text-decoration: none;
color: blue;
}
a:hover{ text-decoration: none;
color: green;
font-weight: bolder;
letter-spacing: 2px;
}
</style>
</head>
<body>
<h2>CSS Style Inline</h2>
<p>This is a <a href=" me to Google</a> !</p>
</body>
</html>
<html>
<head>
<style>
a:link{ text-decoration: none;
color: red;
}
a:visited{ text-decoration: none;
color: blue;
}
a:hover{ text-decoration: none;
color: green;
font-weight: bolder;
letter-spacing: 2px;
}
</style>
</head>
<body>
<h2>CSS Style Inline</h2>
<p>This is a <a href=" me to Google</a> !</p>
</body>
</html>