HTML CSS examples for HTML Tag:textarea
Put <> and & in textarea element
<!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 < and > and & signs in my textarea without any problems. </textarea> </body> </html>