textarea border: 1px solid black;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<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, Arial, Helvetica, sans-serif;
border: 1px solid black;
}
</style>
</head>
<body>
<p>
Are you
<input type="radio" value="male" name="sex"
class="radioinput">
Male or
<input type="radio" value="female" name="sex">
Female?
</p>
<p>
<TEXTAREA name="thetext" rows="20" cols="80">
Notes.
</TEXTAREA>
</p>
<input name="reset" type="reset" id="reset" value="Reset" />
<input type="submit" name="Submit" value="Submit"
class="buttonSubmit" />
</form>
</body>
</html>
Related examples in the same category