Bonjour,
Je ne parviens à changer la couleur des mes liens hypertextes.
Comme vous pourrez le voir dans mon fic HTML et mon fic CSS, j'ai essayé plusieurs méthodes mais rien n'y fait.
Attention, j'aimerais pouvoir utiliser des couleurs différentes pour des liens d'une même page.(par exemple, ici la couleur "aqua"
Merci pour votre aide.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 <!DOCTYPE html> <html lang="fr"> <head> <meta charset="utf-8"> <link rel="stylesheet" href="style.css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" border align="center" width="95%"> <tbody> <tr align="center" valign="top"> <td width="120"> <p class="titre1"></BR><a HREF="sondagepol.html">SONDAGE 1<border="0" width="120" color="aqua"></a> </BR></BR></p></td> <td width="120"> <p class="titre2"></BR><a HREF="sondageviepol.html">SONDAGE 2<border="0" width="120"></a> </BR></BR></p></td> <td width="120"> <p class="titre3"></BR><a HREF="sondagesoc.html">SONDAGE 3<border="0" width="120"></a> </BR></BR></p></td> </tr> </tbody> </table> </BR> <table border="0" cellpadding="0" cellspacing="0" align="center" width="90%" tex-align="center"> <tbody> <td> Si vous souhaitez répondre aux sondages,veuillez vous authentifier: <a HREF="authentification.php">CONNEXION<tex-align="center" a {color="teal"}/A></td><td><A HREF="inscription.php">INSCRIPTION<tex-align="center"/A></td><td> <A HREF="desinscription.php">DESINSCRIPTION<tex-align="center"/A></td> </tbody>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 @font-face { font-family: 'Febrero-Regular'; src: url('css/Febrero-Regular.otf'); font-weight: normal; font-style: normal; } h1, h2, table, body { font-family: 'Febrero-Regular', Arial, serif; } h1 { font-size: 4.5em; text-align: center; font-weight : lighter; color: teal; } h2 { font-size: 2.5em; text-align: center; font-weight : lighter; color: silver; } a {text-decoration:none; font-family: 'Febrero-Regular', Arial, serif;} .titre1 { text-align: center; border: 3px aqua solid; border-radius: 10px; background: teal; opacity: 0.9; font-weight: 800; font-size: 1.1em; color:aqua; } .titre2 { text-align: center; border: 3px aqua solid; border-radius: 10px; background: teal; opacity: 0.9; font-weight: 800; font-size: 1.1em; } .titre3 { text-align: center; border: 3px aqua solid; border-radius: 10px; background: teal; opacity: 0.9; font-weight: 800; font-size: 1.1em; a {color:aqua}; }
Partager