TEXTAREA
Run
<html>
	<head>
		<title>The textarea tag</title>
		<style>
		    label,
textarea {
    font-size: .8rem;
    letter-spacing: 1px;
}
textarea {
    padding: 10px;
    line-height: 1.5;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px #999;
}

label {
    display: block;
    margin-bottom: 10px;
}
		</style>
	</head>
	<body>
		<label for="story">
			<h1>Tell us your story:</h1>
		</label>
		<textarea id="story" name="story"
          rows="5" cols="33">
Once there was a crow, he was very thirsty....He went here and there....!
</textarea>
	</body>
</html>