no. use css. why wouldn't you want to use css in the first place?
<head>
<style type="text/css">
a:hover {
color: orange;
text-decoration: none;
}
</style>
</head>
you could also use a class for this:
<style type="text/css">
a.name_here:hover {
color: orange;
text-decoration: none;
}
</style>
</head>
<body>
<a class="name_here" href="link.html">link</a>
<head>
<style type="text/css">
a:hover {
color: orange;
text-decoration: none;
}
</style>
</head>
you could also use a class for this:
<style type="text/css">
a.name_here:hover {
color: orange;
text-decoration: none;
}
</style>
</head>
<body>
<a class="name_here" href="link.html">link</a>