textarea : textarea : Text HTML CSS TUTORIALS


HTML CSS TUTORIALS » Text » textarea »

 

textarea


 



<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>

 



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Text
» textarea