Skip to content

Instantly share code, notes, and snippets.

@mars13code
Created February 4, 2018 22:20
Show Gist options
  • Save mars13code/812147c7584ec4a2b1915310d9722a1e to your computer and use it in GitHub Desktop.
Save mars13code/812147c7584ec4a2b1915310d9722a1e to your computer and use it in GitHub Desktop.
<?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