Écrire une page HTML 5 qui affiche un menu comprenant les commandes suivantes :
radiobouttons,
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> <head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"/> <title>Exemple de commandes</title> </head> <body> <h1>Listes de commandes</h1> <menu type="toolbar"> <command type="radio" radiogroup="alignment" checked="checked" label="Left" icon="icons/alL.png" onclick="setAlign('left')"/> <command type="radio" radiogroup="alignment" label="Center" icon="icons/alC.png" onclick="setAlign('center')"/> <command type="radio" radiogroup="alignment" label="Right" icon="icons/alR.png" onclick="setAlign('right')"/> <hr/> <command type="command" label="Publish" icon="icons/pub.png" onclick="publish()"/> </menu> <p><a href="http://validator.w3.org/check?uri=referer">page xHTML validé !</a></p> </body> </html>