<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
textarea {
width: 300px;
height: 100px;
background-color: yellow;
font-size: 1em;
font-weight: bold;
font-family: Verdana;
border: 1px solid black;
}
textarea:focus {
background-color: green;
}
</style>
</head>
<body>
<form action="" method="post" name="myform">
<table cellspacing="0">
<tr>
<td><textarea name="notes" cols="35" rows="3"></textarea></td>
</tr>
</table>
</form>
</body>
</html>
|