The source code looks like:

import java.applet.*;
import java.awt.*;

public class TextAreaDemo extends Applet {

	public void init() {
		resize(300, 100);
		setLayout(new FlowLayout(FlowLayout.LEFT));
		TextArea textBox = new TextArea("Four score and seven years ago...", 5, 40);
		add(textBox);
		
	}

}