El documento HTML5 mínimo
¿Cuál es la mínima página escrita con HTML5 que sea válida? En el artículo A Minimal HTML5 Document nos lo explican paso por paso. Y este es el resultado final:
So the minimal valid, secure, screenreader-accessible and stylable-in-IE HTML5 page (not email) that it easily readable and maintainable (subjective, of course) is probably
<!doctype html> <html lang=en> <head> <meta charset=utf-8> <title>blah</title> </head> <body> <p>I'm the content</p> </body> </html>
Deja un comentario