-- http://html5.fr/Voici à ma connaissance la plus petite page web XHTML 5 valide (10 juin 2007):
<?xml version="1.0" encoding="UTF-8"?><html xmlns="http://www.w3.org/1999/xhtml"><head><title/></head><body/></html>
total: 116 octets; page en question, validité de la page
Pour info, inutile d'essayer de lire le moindre document XHTML 5 avec Internet Explorer (6 ou 7), ce sera peine perdue. Tout document XHTML 5 doit être un document XML (avec donc un en-tête XML), & fourni par le serveur web comme un fichier XML (c'est-à-dire avec un header HTTP du type "Content-Type: text/xml"); IE ne peut lire ce genre de document.
Voici à ma connaissance la plus petite page web HTML 5 valide (9 juin 2007 - 4 août 2007):
<!DOCTYPE html><html><head><meta charset=utf-8><title></title></head><body></body></html>
je me suis rendu compte que je pouvais diminuer encore la taille de cette page en replaçant <meta charset="utf-8"/> par <meta charset=utf-8>; donc -3 octets
total: 89 octets; page en question, validité de la page
Translated by Google:
Here's to my knowledge the smallest web page 5 valid XHTML (June 10, 2007):
<? xml version = "1.0" encoding = "UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title/> </ head> <body /> </ html>
Total: 116 bytes; page in question, validity of the page
For info, not try to read any document XHTML 5 with Internet Explorer (6 or 7), it will be useless. Any document XHTML 5 must be an XML document (with therefore a header XML), & provided by the web server as an XML file (ie with a header HTTP type "Content-Type: text / xml "); IE can not read this kind of document.
Here's to my knowledge the smallest HTML web page 5 valid (June 9, 2007 - August 4, 2007):
<! DOCTYPE html> <meta <html> <head> charset=utf-8> <title> </ title> </ head> <body> </ body> </ html>
I realized that I could still reduce the size of this page by placing <meta charset="utf-8"/> <meta charset=utf-8>, so -3 bytes
total: 89 bytes; page in question, validity of the page
To the best of my knowledge, the shortest XHTML5 document is
- Code: Select all
<html xmlns="http://www.w3.org/1999/xhtml"><head><title/></head><body/></html>
and HTML5:
- Code: Select all
<!doctype html><title></title>