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

/* <applet code="textfield" width="300" height="100">
   </applet>
*/

// Copyright Samar Abbas 2000

public class textfield extends Applet 
{
 public void init() 
 {
   TextField tf = new TextField("This is a Text Field");
   add(tf);
   setBackground(Color.black);
 }
}

// call setEditable(false) to make the field read-only

