<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
function onmousemove(c){
c.style.text-decoration: line-through;
c.style.font-weight: italic;
c.style.font-style: italic;
}
function onmouseout(c){
c.style.text-decoration:none;
c.style.font-weight: none;
c.style.font-style: none;
}
}
</style>
</head>
<script type="text/javascript">
</script>
<body vlink="red" bgcolor="#CCFFFF">
<a href="#" name="c" onmousemove="nomousemove("c")" onmouseout="onmouseout("c")">sign out</a>
</body>
</html>
慕粉4343150