Bonjour, je me lance aujourd'hui dans mes debut en langage info, j'aurais aimé des critiques de personnes expérimentées s'il vous plait !
merci d'avance.
code css :
code html :Code:.noir { background-color: #000000; width: 900px; height: 560px; margin-left: 50px; margin-top: 8px; } .gris { width: 900px; height: 560px; background-color: E3E4DF; margin-left: -8px; margin-top:8px; float :left; } #header { height: 110px; background-color: E3E4DF; } #centre { background-color:E3E4DF; } #pied { height: 30px; background-color: E3E4DF; } .bande { width: 1000px; height: 19px; line-height: 19px; background: #4B4B4B; font-family: Verdana; color: #FFFFCC; font-weight: bold; font-size: 10pt; word-spacing : 11mm ; text-align: center; margin-top : 5px; margin-left: -45px; } a:link { font-weight:bold ; color: #FFFFCC ;} a:visited {color: #66FFFF ; } a:hover { color: red;text-decoration: none ; }
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <title>Acceuil - La Ferme Equestre</title> <link rel="stylesheet" type="text/css" href="style_ferme.css"> </head> <body> <div class="noir"> <div class="gris"> <div id="conteneur"><img src="test.jpg" height="110" hspace="1" vspace="1" width="900"> <div class="bande"> Acceuil | <a href="Calendrier.html">Calendrier</a> | <a href="Tarifs.html">Tarifs</a> | <a href="Chevaux.html">Chevaux</a> | <a href="Contact.html">Contact</a> </div> <div id="centre"> CENTRE <br> </div> <div id="pied">pied de page</div> </div> </div> </div> </body> </html>
-----