I'm new in Java, and I need help, Can I put links (HREF / ANCHOR TAG) inapplet?
you can but you can't add links with html tags i know.You must it in source code of java.
This is not possible as per my knowledge but you can have a groups of labelswith arranged in a grid layout one below the others or next to each other.On these labels you can trap the mouse events using MouseListener interface.In the mouseClicked(MouseEvent me) method you can then know which is thesource label from which the event was generated using the me.getSource()method.Now that you have trapped the associated link you can use the URLConnectionclass from the java.net.* package and open a new browser or may be show inthe same browser the output by reading the resource links data.If want to know more abt URLConnection class refer the BookNetworking by Oreilly Publication.There is a small code given to trap & click event on applet and open an htmlpage on the browser.