Images, Applets et Objets |
 
|
-
Inclusion d'une image (IMG)
<P>I just returned from vacation! Here's a photo
of my family at the lake:
<IMG src="vacation/family.png"
alt="A photo of my family at the lake.">
-
Note:
-
alt est obligatoire -> accessibilité
Inclusion d'une "applet" java (APPLET)
<APPLET code="Bubbles.class" width="500" height="500">
Java applet that draws animated bubbles.
</APPLET>
Mécanisme général d'inclusion (OBJECT)
<P>I just returned from vacation! Here's a photo
of my family at the lake:
<OBJECT data="vacation/family.png" type="image/png">
<OBJECT data="vacation/family.gif" type="image/gif">
A photo of my family at the lake.
</OBJECT>
</OBJECT>