Last active
January 19, 2021 09:04
-
-
Save fallinov/83d64b09fdb05055481e97a92a2e06ba to your computer and use it in GitHub Desktop.
Fichier HTML de base
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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