Skip to content

Instantly share code, notes, and snippets.

@fallinov
Last active January 19, 2021 09:04
Show Gist options
  • Save fallinov/83d64b09fdb05055481e97a92a2e06ba to your computer and use it in GitHub Desktop.
Save fallinov/83d64b09fdb05055481e97a92a2e06ba to your computer and use it in GitHub Desktop.
Fichier HTML de base
<!DOCTYPE html>
<html lang="fr">
<head>
<!-- Jeu de caractères utilisé pour l'encodage du fichier HTML -->
<meta charset="UTF-8">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Titre de la page -->
<title>Titre de la page | Nom du site</title>
<!-- Auteur -->
<meta name="author" content="Laure Dinateur">
<!-- Description de la page -->
<meta name="description" content="Brève description du contenu de la page.">
</head>
<body>
<h1>Titre principal de la page</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment