Merci Yoda Softaware de m´avoir expliqué plus en détail, je comprends mieux le fonctionnement maintenant.
Cependant j´ai fait comme tu as dit : 2 fichiers :
L´un nommé style.css :
< style type="text/css">
. vertical a {
color: white;
background-color: #000080;
text-decoration: none;
font-weight: bold;
text-align: center;
padding: 5px;
border: 2px outset #c0c0c0;
display: block;
width: 100px;
}
. vertical a:hover {
background-color: #6495ED;
background-image: url(aqua.jpg);
border: 2px inset #c0c0c0;
}
< /style>
L´autre index.html :
< html>
< head><link href="style.css" rel="stylesheet" type="text/css">
< title>Bienvenue sur le site</title>
< /head>
< body bgcolor=#333399 alink="green" vlink="yellow">
< div class="vertical">
< p>
< a href="personnages.html">Personnages</a>
< a href="images.html">Images</a>
< a href="histoire.html">Histoire</a>
< /p>
< /div>
< /body>
< /html>
Voilà, mais ça ne change pas la mise en forme du fichier index.html.
Que faire ?
Merci d´avance.