Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Is a TEXTAREA Tag/Element
What Is a TEXTAREA Tag/Element? - XHTML 1.0 Tutorials - Understanding Forms and Input Fields
✍: FYIcenter.com
A "textarea" element is an inline element that you can use to define a large input area in a form. Here are basic rules about a "textarea" element:
Here is a tutorial example of "textarea" input fields:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Textarea Input Fields</title> </head> <body> <h4>Online Survey</h4> <form action="http://localhost/submit" method="get"> <p style="background-color: #eeeeee; padding: 8px;"> Your name: <input type="text" name="name" value="Joe"/><br/> Feedback: <textarea cols="16" rows="4">Nice site. </textarea><br/> <input type="submit" value="Submit"/> </p> </form> </body> </html>
If you save the above document as text_area.html, and view it with
Internet Explorer, you will see a text input area in the form as shown below:
2007-05-12, 4780👍, 0💬
Popular Posts:
Explain simple Walk through of XmlReader ? In this section we will do a simple walkthrough of how to...
Managed Code and Unmanaged Code related ASP.NET - How do you hide Public .NET Classes and other publ...
What is the difference between Session State and ViewState? ViewState is specific to a page in a ses...
How can I check for HTML errors? HTML validators check HTML documents against a formal definition of...
How To Select All Columns of All Rows from a Table? - MySQL FAQs - SQL SELECT Query Statements with ...