Table of Contents

Structuring HTML5 documentsSupporting legacy browsers

doctype

Un seul doctype en html5 :

<!doctype html>

En réalité pas besoin hormis pour backward compatibility (active le quirks mode), donc préferer le mettre.

<html>

<html>

ou

<html lang=“<lang code>”>

<head>
  <meta charset="utf-8">
</head>