% master: applets_in_eine_webseite_einbinden.tex
% Applets in eine Webseite einbinden v0.1
% 2011-06-08 (Rx)

\subsection{Applets in eine Webseite einbinden}
%----------------------------------------------

\begin{verbatim}
<html>
  <head>
    <title>Mein erstes Applet</title>
  </head>
  <body>
    <applet code="myApplet.class" width=150 height=150>
      <parm name="var1" value="Hallo">
      <parm name="var2" value="Java!">
    </applet>
  </body>
</html>
\end{verbatim}