Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h1>L'attribut de téléchargement de la zone</h1> <p>Cliquez sur le soleil ou sur l'une des planètes pour télécharger son contenu.</p> <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" href="information_about_the_sun.html" download> <area shape="circle" coords="90,58,3" alt="Mercury" href="merglobe.gif" download> <area shape="circle" coords="124,58,8" alt="Venus" href="information_about_the_planet_venus.txt" download> </map> <p><b>Remarque :</b>L'attribut download n'est pas pris en charge dans IE, Safari ou Opera version 12 (et antérieures).</p> </body> </html>