Applets should be almost completely transparent to the user of the browser. The user has the habit of seeing in-lined images in HTML documents; applets basically follow the same principles, except that instead of static images, a displayed document will now contain GUI elements such as buttons. Each applet will provide its own visual interface, and should also provide the corresponding documentation if needed. Remember that an applet is nothing but a small application, embedded in your browser.
Security is discussed extensively in chapter 3. All
efforts have been taken to ensure that applets can be loaded without fear
of consequences. There is however one important step in the security
mechanism where the user has to make a decision: before a foreign bytecode
is linked into the browser, the user is invited
to decide to accept or reject the bytecode. The
dialog box will show you the PGP signature of the bytecode, if available.
As explained in chapter 3, the security mechanisms based
on types are defeated if the bytecode has been tampered with (that is, it is
not the intact output on an unmodified compiler).
In short: an unsigned bytecode is not secure.
For a signed bytecode, you accept the bytecode on the basis of the trust you grant to the signature's owner.
For a complete understanding of the security mechanisms, please refer to chapter 3.
Applets in HTML documents cannot, unfortunately, rely on elements existing in HTML 2.0 or proposed for HTML 3.0. Currently, MMM uses the EMBED element, hopefully following preliminary work on this topic by the HTML Working Group.

The semantics of EMBED is not restricted to applets: the SRC attribute value refers to an arbitrary document, of some MIME type m. The browser reserves some display space inside the HTML display, and calls the visualizer appropriate to type m on the referred document, with, as parameters, the reserved display space as well as the various arguments given by the PARAM elements.
In the case of applets,
The API (Application Programming Interface) offered to applet developers permits more than simply adding GUI elements inside a displayed HTML document. Currently (0.30alpha1), an applet, or more precisely a foreign bytecode, can do the following:
MMM lets you see what foreign bytecode files have been loaded by the
browser, using the Others
Caml Modules menu.
Double clicking on the url referencing a foreign bytecode displays
the list of functions registered by this bytecode for use by the EMBED
element. Each of these bytecode files can also be flushed by selecting it
and clicking on Clear
. Note that rejected foreign bytecodes are also referenced in
this table, to limit the number of network connections.