Bon, en reprend tout à zéro.
Tu copies et tu colles le code ci-dessous dans une nouvelle page. Et tu me dis ce que ça donne.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
<head>
<title>Photos</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/CSS">
body {
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
background-image: url("images/fond.png"); /* Une petite image de fond pour éviter d'avoir un vieux fond blanc

*/
}
#en_tete {
width: 760px;
height: 100px;
background-image: url("bannierepe/bannierepe.png");
background-repeat: no-repeat;
margin-bottom: 10px;
}
#menu {
float: left;
width: 100%;
}
.element_menu {
background-color: #626262;
border:2px solid black;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="bannière">
<h1><img src="images/bannierep.jpg" width="760" alt="photos"/></h1>
</div>
<div id="menu">
<div class="element_menu">
<h2>cartes</h2> <!-- Titre du sous-menu -->
<ul>
<li><a href="page1.html">Lien</a></li>
<li><a href="page2.html">Lien</a></li>
<li><a href="page3.html">Lien</a></li>
</ul>
</div> <!-- /class=element_menu -->
<div class="element_menu">
<h2>photos</h2>
<ul>
<li>Lien</li>
<li>Lien</li>
<li>Lien</li>
</ul>
</div><!-- /class=element_menu -->
</div><!-- /id=menu -->
<div id="corps">
<p>Les photos sépia</p>
</div><!-- /id=corps -->
<div id="pied_de_page">
<p>Cliquez ici pour envoyer un mail</p>
</div><!-- /id=pied_de_page -->
</body>
</html>