HTML Text area with custom user font size style and colour - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Text

Description

HTML Text area with custom user font size style and colour

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <style>
#container {<!--from   w  w w .jav a 2s .  c o m-->
   width:100%;
   text-align:center;
}
</style> 
 </head> 
 <body> 
  <div id="container"> 
   <textarea name="mytextarea" cols="10" rows="10" style="font-family:comic sans ms"></textarea> 
  </div>  
 </body>
</html>

Related Tutorials