Bonjour,

Je voudrais changer la police par défaut dans certaines balises de mon formulaire HTML. Par exemple, je voudrais que le texte "Entrez votre texte ici" dans mon <textarea> soit en Century Gothic.

Est-il possible de changer ces polices sans utiliser du CSS?

Merci

PS : Je vous donne mon code HTML si cela peut vous aider !

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
 
<html>
<body>
	<form method="post" action="egw.php">
 
		<font face="Century Gothic" size="-1">Nom :</font> <br /> <input type="text" name="nom" />
		<br />
		<br />
 
		<font face="Century Gothic" size="-1">Prénom :</font> <br /> <input type="text" name="prenom" />
		<br />
		<br />
 
		<font face="Century Gothic" size="-1">Entreprise :</font> <br /> <input type="text" name="entreprise" />
		<br />
		<br />
 
		<font face="Century Gothic" size="-1">Objet de la demande :</font> <br /> <input type="text" name="objet" />
		<br />
		<br />
 
		<font face="Century Gothic" size="-1">Description du problème :</font> <br /> <textarea cols="45" rows="8" name="description" onfocus="if (this.value == 'Entrez votre texte ici') this.value=''">Entrez votre texte ici</textarea>
		<br />
 
		<font face="Century Gothic" size="-1">Ce message est-il privé ?</font> <br /> <input type="radio" name="prive" value="non" id="non" checked="checked" />
		<label for="non">Non</label>
		<input type="radio" name="prive" value="oui" id="oui">
		<label for="oui">Oui</label>
		<br />
		<br />
		<br />
 
		<font face="Century Gothic" size="-1">Son degrès de priorité :</font> <br /> <select name="prio">
		<option value="1">1 - Bas</option>
		<option value="2">2</option>
		<option value="3">3</option>
		<option value="4">4</option>
		<option value="5">5 - Moyen</option>
		<option value="6">6</option>
		<option value="7">7</option>
		<option value="8">8</option>
		<option value="9">9 - Haut</option>
		</select>
		<br />
		<br />
		<br />
		<br />
		<br />
		<br />
		<br />
		<br />
		<br />
 
		<input type="submit" value="Envoyer" /> <input type="reset" value="Annuler" name="Annuler" />
	</form>
</body>
</html>