1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
| <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Titre de ma page</title>
<link rel="stylesheet" href=".styles.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<!--Body style="background-color: rgba(255, 255, 128, .5)"-->
<body>
<!-- Entête principale utilisée dans toutes les pages du site-->
<header>
<!-- ============================ -->
<?php include("header.php"); ?>
<!-- ============================ -->
<h1>En-tête</h1>
</header>
<nav>
<ul>
<li><a href="#">Accueil</a></li>
<li><a href="#">A propos</a></li>
<li><a href="#">Nveaux</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Etc.</a></li>
</ul>
<!-- formulaire de recherche -->
<form>
<input type="search" name="q" placeholder="Rechercher">
<input type="submit" value="Lancer !">
</form>
</nav>
<!-- Contenu de la page -->
<main>
<!-- ============================ -->
<?php include("menu-g.php"); ?>
<!-- ============================ -->
<!-- Il contient un article -->
<article>
<h2>En-tête d'article</h2>
<p>Mon entête</p>
<h3>Sous‑section</h3>
<p>Info sur un paragraphe de l'entête.</p>
<h3>Autres sous-sections</h3>
<p>Info sur la ou les sections précédentes.</p>
</article>
<!-- Le contenu « à côté » peut aussi être intégré dans le contenu principal -->
<aside>
<h2>En relation</h2>
<ul>
<li><a href="#">Test 1 et +</a></li>
</ul>
</aside>
</main>
<!-- Et voici nle footer utilisé sur toutes les pages pour afficher Copyright et autre -->
<footer>
<!-- ============================ -->
<?php include("header.php"); ?>
<!-- ============================ -->
<h2>Footer</h2>
<nav>
<a href="#">Accueil et +</a> |
<a href="#">Informations</a> |
</nav>
</nav>
<p>©Copyright 20xx par JLB59. Tous droits réservés.</p>
</footer>
</body>
</html> |