JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<style>
a:link {color:red;}
a:visited {color:green;}
a:hover {color:blue;}
a:active {color:yellow;}
</style>
</head>
<body>
<a href="http://techtweets.com.bd" target="_blank">This is a link</a> </br>
<a href="#">click me, i will change my color</a>
</body>
</html>
CSS
p {
color:red;
}
#myid {
color:blue;
}