XHTML/ CSS - Text Areas
Sometimes you want people to have a text area to input a lot of text. You use the tags <textarea></textarea>. Here's an example:
<form>
<textarea name = "textfield">
Type something here
</textarea>
</form>
You can change the size of the text field by adding rows ="" and cols = "" to the <textarea> tag.
https://www.youtube.com/watch?v=veKHw125UJs&index=23&list=PLC1322B5A0180C946
<form>
<textarea name = "textfield">
Type something here
</textarea>
</form>
You can change the size of the text field by adding rows ="" and cols = "" to the <textarea> tag.
https://www.youtube.com/watch?v=veKHw125UJs&index=23&list=PLC1322B5A0180C946
Comments