Created
February 4, 2018 22:20
-
-
Save mars13code/812147c7584ec4a2b1915310d9722a1e to your computer and use it in GitHub Desktop.
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
<?php | |
// balise ouvrante PHP | |
// ligne de commentaire | |
/* | |
bloc de commentaire | |
*/ | |
// on écrit du code PHP entre les balises PHP | |
// balise fermante PHP | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>TITRE</title> | |
</head> | |
<body> | |
<header> | |
<h1>TITRE1</h1> | |
</header> | |
<main> | |
<section> | |
<h2>TITRE2</h2> | |
</section> | |
</main> | |
<footer> | |
<p>tous droits réservés</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment