Bonjour,

Je souhaiterais avoir des conseils sur les Css dans une page html. Je ne peux utiliser un fichier .css. Pourriez-vous me donner votre opinion et comment feriez-vous à ma place, merci par avance.

Keawee


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
61
62
63
64
65
66
<head>
	<title>Newsletter Kiabi</title>
	<style>
	p
	{
	font-family:verdana,arial,helvetica;
	font-size:9px;
	color:#000
	}
	td.footer
	{
	font-family:verdana,arial,helvetica;
	font-size:10px;
	color:#000
	}
 
	a.footer
	{
	font-family:verdana,arial,helvetica;
	font-size:10px;
	color:#000;
	text-decoration:underline
	}
	a.footer:hover
	{
	font-family:verdana,arial,helvetica;
	font-size:10px;
	color:#000;
	text-decoration:none
	}
 
	a.nonl
	{
	font-family:verdana,arial,helvetica;
	font-size:10px;
	color:#000;
	text-decoration:underline;
	color:#545454
	}
	a.nonl:hover
	{
	font-family:verdana,arial,helvetica;
	font-size:10px;
	color:#000;
	text-decoration:none;
	color:#545454
	}
 
	a.cnil
	{
	font-family:verdana,arial,helvetica;
	font-size:10px;
	color:#000;
	text-decoration:underline;
	color:#8e8e8e
	}
	a.cnil:hover
	{
	font-family:verdana,arial,helvetica;
	font-size:10px;
	color:#000;
	text-decoration:none;
	color:#8e8e8e
	}
	</style>
</head>