I currently have something like this in my css file:
a:active {
color: purple;
}
p {
color: pink;
}
and now I want to incorporate that into solely the HTML.
For the p it is easy, I would just have
<p style = "color: pink">Foo</p>
My question is how do I incorporate the pseudo-classes into the actual html