Bonsoir , je me suis essayée au contener ?? grace à vos tutoriaux j'ai voulu personnalisé mais ma page n'apparait pas dans IE et je voudrais rajouter 2 div : un en dessous de mon menu pour écrire et un autre en desous de ma photo pour mettre des commentaire avec un fond blanc pouvez vous m'aider merci
Modifié par cubitus (13 Oct 2006 - 21:57)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Je nomme ma page</title>
<style type="text/css">
<!--
/*Un style universel*/
* {
margin: 0;
padding: 0;
}
/*Mon corps*/
body {
color: #fff;
font-family: Century Gothic;
font-size: 11px;
text-align: center;
background-color: #FFF;
background-image: url();
}
div#container {
margin: 0 auto;
width: 700px;
background-color: #FE9903;
}
/*Ma tête*/
#header p {
font-size: 1em;
font-weight: bold;
color: #FFF;
text-align: left;
padding: 1em;
}
/* Mon menu*/
div#menu {
float: left;
padding: 1em;
width: 150px;
}
#menu ul {
text-align: left;
}
#menu li {
list-style: none;
line-height: 3em;
}
#menu a {
font-weight: bold;
}
/*Mon contenu*/
div#contenu {
margin-left: 155px;
}
/*Les liens*/
a:link, a:visited, a:active {
color: #FFF;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: #20A42E;
}
/*les autres bien utiles parfois*/
hr.spacer {
visibility: hidden;
clear: both;
}
</style>
</head>
<body>
<div id="container">
<!--Début de la tête-->
<div id="header">
<div align="center"><img src="images/logo-vert.gif" alt="logovert" name="logoVert" width="174" height="84" id="logoVert" />
</div>
<p>37 rue Bouret<br />
75019 Paris<br />
Tel : 01 40 40 94 10<br />
Fax : 01 40 40 90 54<br />
<a href="mailto:contact@aepaysage.com" title="" tabindex="">contact@aepaysage.com</a></p>
<img src="images/barre.jpg" alt="herbe" width="700" height="20" /></p>
</div>
<!--Début du menu-->
<div id="menu">
<ul><li><a href="../acceuil.html" title="" tabindex="" accesskey="">Accueil</a></li>
<li><a href="../agence.html" title="" tabindex="">L'agence</a></li>
<li><a href="../Pg1.html" title="" tabindex="">Les projets</a></li>
<li><a href="../scenographie.html" title="" tabindex="">La scenographie urbaine </a></li>
<li><a href="../contact.html" title="" tabindex="" accesskey="">Contact</a></li>
</ul>
</div>
<!--Début du contenu-->
<div id="contenu">
<h2> </h2>
<p><img src="images/epinay-rossini-2.jpg" alt="epinay" width="512" height="341" /></p>
</div>
<hr class="spacer" />
<!--Début du footer-->
<div id="footer">Copyright © 2006 <a href="http://www.alyzes.com" title="" tabindex="" hreflang="fr">A&P-Design</a> Tous droits reservé<br />
Graphisme, Web design, conception et création de site Web - A&P-Design.France</div>
</div>
</body>
</html>
Modifié par cubitus (13 Oct 2006 - 21:57)