Categories
- HTML Books
- HTML Colors
- HTML Characters
- HTML Tags
- <!--...-->
- <!doctype>
- <a>
- <abbr>
- <acronym>
- <address>
- <applet>
- <area>
- <b>
- <base>
- <basefont>
- <bdo>
- <big>
- <blockquote>
- <body>
- <br>
- <button>
- <caption>
- <center>
- <cite>
- <code>
- <col>
- <colgroup>
- <dd>
- <del>
- <dfn>
- <dir>
- <div>
- <dl>
- <dt>
- <em>
- <fieldset>
- <font>
- <form>
- <frame>
- <frameset>
- <h1>
- <h2>
- <h3>
- <h4>
- <h5>
- <h6>
- <head>
- <hr>
- <html>
- <i>
- <iframe>
- <img>
- <input>
- <ins>
- <isindex>
- <kbd>
- <label>
- <legend>
- <li>
- <link>
- <map>
- <menu>
- <meta>
- <noframes>
- <noscript>
- <object>
- <ol>
- <optgroup>
- <option>
- <p>
- <param>
- <pre>
- <q>
- <s>
- <samp>
- <script>
- <select>
- <small>
- <span>
- <strike>
- <strong>
- <style>
- <sub>
- <sup>
- <table>
- <tbody>
- <td>
- <textarea>
- <tfoot>
- <th>
- <thead>
- <title>
- <tr>
- <tt>
- <u>
- <ul>
- <var>
- HTML Tutorial
- HTML Software
- HTML Validator
Tools
Partners
HTML <applet> Tag
Description:
The <applet> tag is used for embedding a Java applet within an HTML document.
This tag is deprecated in HTML 4.01, use the <object> tag instead.
Specific Attributes:
| Attribute | Definition |
| codebase | Specifies a relative base URL for applets specified in the code attribute. |
| code | Specifies the file name of a Java applet. |
| name | Defines the name for an applet (to use in scripts). |
| archive | Specifies the location of an archive file. |
| object | Specifies a reference to a serialized representation of an applet. |
| width | Specifies the width of an applet. |
| height | Specifies the height of an applet. |
Other Attributes:
| Attribute | Definition |
| class | Specifies a classname for an element. |
| id | Specifies a unique id for an element. |
| style | Specifies an inline style for an element. |
| title | Specifies a title to associate with the element. Many browsers will display this when the cursor hovers over the element (similar to a "tool tip"). |
| alt | Alternative text. This will display if the applet can't be loaded. |
| align | Specifies the alignment of an applet according
to surrounding elements.
|
| hspace | Defines the horizontal spacing around an applet. |
| vspace | Defines the vertical spacing around an applet. |
Example Code:
<applet code="lines.class" width="350"
height="350">
Java applet that draws animated lines.
</applet>



