<!DOCTYPE html> <html> <body> <h1>The textarea rows and cols attributes</h1> <label for="css">Type</label><br> <textarea rows="4" cols="50"> At horje.com you will learn how to make a website. We offer free tutorials in all web development technologies. </textarea> <p>This textarea has 4 visible rows.</p> <p>You can change that by changing the value of the "rows" attribute.</p> </body> </html>