'textarea' creates a multiline text entry control : textarea : Form Tags HTML CSS TUTORIALS


HTML CSS TUTORIALS » Form Tags » textarea »

 

'textarea' creates a multiline text entry control



    
<html>
<head>
<title>textarea element example</title>
</head>
<body>
    <form name="form1" method="post" action="">
        <p>
            <fieldset align="center">
                <textarea name="textfield1" cols="40" rows="2" wrap="hard">
                Your name and surname
                </textarea>
                <br>
            </fieldset>
        </p>
    </form>
            
    <form name="form2" method="post" action="">
        <p>
            <fieldset>
                <input type="text" name="textfield3" value="Street address" size="65">
                <br>
                <input type="text" name="textfield4" value="City" size="45">
                <br>
                <input type="text" name="textfield5" value="Zip Code" size="55">
                <br>
                <input type="text" name="textfield6" value="Email" size="55">
                <br>
                <input type="text" name="textfield7" value="Website" size="55">
            </fieldset>
        </p>
    </form>
</body>
</html>
    
      
      



HTML code for linking to this page:

Follow Navioo On Twitter

HTML CSS TUTORIALS

 Navioo Form Tags
» textarea