Bunu direk bu şekilde eklerseniz olmaz tabi ki. Tamamen karambole verdik kodları, ilk mesajdaki yetersizliğe binaen.
Kodu nereye nasıl eklediniz bilmiyorum.
<!DOCTYPE html>
<html>
<head>
<style>
a.xx{font:normal normal 30px Arial;color:black;}
a.yy{color:red}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<a href="https://www.r10.net" class="xx">r10.net bayGaReZ</a>
<script>
$(".xx").mouseover(
function(){
$(this).addClass('yy');
}
).mouseout(
function(){
$(this).removeClass('yy');
}
)
</script>
</body>
</html>