import java.awt.*;
import java.applet.*;
public class FltLeft extends Applet{
public void init(){
setLayout(new FlowLayout(FlowLayout.LEFT));
//setFont(new Font("SansSerif", Font.BOLD, 24));
//U can use this line to set font
for(int i=1;i<5;i++)
add(new Button(" "+i));
}
}