You just misspelled hover:
.mytag a:hover{ color:red; }
At the very least, it's not working because you've misspelled the name of the name of the :hover pseudo-class. Try something like the following instead:
.tag a { color: black; } .tag a:hover { color: yellow; }