Put <> and & in textarea element - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:textarea

Description

Put <> and & in textarea element

Demo Code

ResultView the demo in separate window

<!doctype html>
<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
  <title>Yes I can</title> 
 </head> <!--from  w  w w.j  a  v a2 s .  co  m-->
 <body> 
  <textarea name="test">
        I can put &lt; and &gt; and &amp; signs in
        my textarea without any problems.
    </textarea>  
 </body>
</html>

Related Tutorials