Écrire une page xHTML1.1 affichant contenant deux object de type text/HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> <head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"/> <title>Utilisation des "object" pour remplacer les "iframes".</title> </head> <body> <h1>Utilisation des <em>object</em> pour remplacer les <em>iframes</em>.</h1> <div> <object data="rien_dire.html" type="text/html" width="80%" height="500"><samp>object</samp> ignoré</object> </div> <div> <object data="tout_dire.html" type="text/html" width="80%" height="200"><samp>object</samp> ignoré</object> </div> <p><a href="http://validator.w3.org/check?uri=referer">page xHTML validé !</a></p> </body> </html>
Écrire une page xHTML 1.1 affichant contenant un object contenant à son tour un document de type pdf
Le fichier test.pdf pourra être utilisé dans cet execice
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> <head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> <title>Utilisation des "object" pour afficher un document PDF.</title> </head> <body> <h1>Utilisation de <em>object</em> pour afficher un document <em>pdf</em>.</h1> <div><object data="test.pdf" type="application/pdf"> Mode d'échec cliquez sur le lien suivant : <a href="test.pdf">test.pdf</a> </object></div> <p><a href="http://validator.w3.org/check?uri=referer">page xHTML validé !</a></p> </body> </html>
Écrire une page xHTML 1.1 affichant contenant un object contenant à son tour un document de type SWF
Le fichier test.swf pourra être utilisé dans cet execice
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"> <head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> <title>Utilisation des "object" pour afficher un document SWF</title> </head> <body> <h1>Utilisation de <em>object</em> pour afficher un document <em>flash</em>.</h1> <div><object type="application/x-shockwave-flash" data="test.swf" width="320" height="240"> <param name="movie" value="data/test.swf" /> <param name="loop" value="false" /> Mode d'échec cliquez sur le lien suivant : <a href="test.swf">test.swf</a> </object></div> <p><a href="http://validator.w3.org/check?uri=referer">page xHTML validé !</a></p> </body> </html>