7 Einträge, 1 Seite |
<input type="text" style="background:green;" name="text">
Das ist der T<span style="color:black">e</span><span style="color:red">x</span><span style="color:green">t</span>
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
<!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
<META http-equiv="content-type" content="text/html;charset=iso-8859-1">
<TITLE></TITLE>
<style>
input {
color: yellow; /* Textfarbe */
background-color: blue; /* Hintergrund */
}
textarea {
background-color: silver;
color: green;
}
</style>
</HEAD>
<BODY>
<P>Das ist der T<span style="color:black">e</span><span style="color:red">x</span><span style="color:green">t</span></P>
<FORM>
<INPUT>
<BR>
<textarea cols="50" rows="10">Oha
aaa
aaa</textarea>
</FORM>
</BODY>
</HTML>
7 Einträge, 1 Seite |