import java.awt.*;
import java.applet.*;


public class Applet1 extends Applet
{
TextField  et1= new TextField("Etiqueta 1");
TextField  et2= new TextField("Etiqueta 2");
TextField  et3= new TextField("Etiqueta 3");
Button boton1=new Button("Ventana independiente");
Font Farial=new Font("Arial",Font.PLAIN,12);
Font Frame=new Font("Comic Sans MS", Font.BOLD , 18);
Frame f=new Frame ("valores independientes");



	public void init()
	{
setBackground(Color.blue);
setForeground(Color.yellow);
boton1.setFont (fcomic);
add(boton1);
et1.setFont (farial);
f.add(et1);
et2.setFont(fcomic);
f.add(et2);
et3.setFont(farial);
f.add(at3);
add(f);
}
public boolean action(Event e , Object o)
{
if(e.target==boton1)
{
f.resize(300,300);
f.show();
return true;
}
return true;
}

}
