<header>
<script type="text/javascript" language="javascript">
function Farbe()
{
if (document.Formular.Font.selectedIndex=="1")
{
text = prompt("Schreibe dein Text, der ORANGE erscheinen soll!","");
if(text!="")
{
text = "[ORANGE]"+ text +"[/ORANGE]";
document.Formular.textarea.value += text;
}
}
if (document.Formular.Font.selectedIndex=="2")
{
text = prompt("Schreibe dein Text, der ROT erscheinen soll!","");
if(text!="")
{
text = "[ROT]"+ text +"[/ROT]";
document.Formular.textarea.value += text;
}
}
if (document.Formular.Font.selectedIndex=="3")
{
text = prompt("Schreibe dein Text, der BLAU erscheinen soll!","");
if(text!="")
{
text = "[BLAU]"+ text +"[/BLAU]";
document.Formular.textarea.value += text;
}
}
if (document.Formular.Font.selectedIndex=="4")
{
text = prompt("Schreibe dein Text, der GRÜN erscheinen soll!","");
if(text!="")
{
text = "[GRÜN]"+ text +"[/GRÜN]";
document.Formular.textarea.value += text;
}
}
if (document.Formular.Font.selectedIndex=="5")
{
text = prompt("Schreibe dein Text, der SILBER erscheinen soll!","");
if(text!="")
{
text = "[SILBER]"+ text +"[/SILBER]";
document.Formular.textarea.value += text;
}
}
}
function Groesse()
{
if (document.Formular.Size.selectedIndex=="1")
{
text = prompt("Schreibe dein Text, der KLEIN erscheinen soll!","");
if(text!="")
{
text = "[KLEIN]"+ text +"[/KLEIN]";
document.Formular.textarea.value += text;
}
}
if (document.Formular.Size.selectedIndex=="2")
{
text = prompt("Schreibe dein Text, der GROSS erscheinen soll!","");
if(text!="")
{
text = "[GROSS]"+ text +"[/GROSS]";
document.Formular.textarea.value += text;
}
}
if (document.Formular.Size.selectedIndex=="3")
{
text = prompt("Schreibe dein Text, der RIESIG erscheinen soll!","");
if(text!="")
{
text = "[RIESIG]"+ text +"[/RIESIG]";
document.Formular.textarea.value += text;
}
}
}
</script>
</header>
<body>
<form name=Formular>
<select onChange="Farbe()" name=Font>
<option value=0>FARBE</option>
<option value=1 style="color:orange">Orange</font></option>
<option value=2 style="color:red">Rot</option>
<option value=3 style="color:blue">Blau</option>
<option value=4 style="color:green">Grün</option>
<option value=5 style="color:silver">Silber</option>
</select>
<select onChange="Groesse()" name=Size>
<option value=0>GRÖSSE</option>
<option value=1>klein</font></option>
<option value=2>gross</option>
<option value=3>riesig</option>
</select>
<br>
<textarea name="textarea"></textarea>
</form>
</body>