Julian: Einfaches CSS Problem

Hallo Selfhtml'ler!
Ich bräuchte Hilfe!
Was ist an der Datei unten falsch? Ich möchte die Schriftgröße und die Schriftart bestimmen. Nur leider funktioniert es nicht.
Danke für eure Hilfe!
Grüße Julian

##########################################################
<html>
<head>
<title>textfeld1</title>
<meta name="author" content="Besitzer">
<meta name="generator" content="Ulli Meybohms HTML EDITOR">
<STYLE type=text/css>FONT-FACE {FONT-SIZE: 12px; FONT-FAMILY: arial}</STYLE>
</head>
<body leftmargin="0" topmargin="0" background="images/textfeld1.gif" text="#7BB0D1" link="#991414" alink="#991414" vlink="#991414">
<b>Willkommen auf Phone2Company.com</b>
</body>
</html>

  1. <STYLE type=text/css>FONT-FACE {FONT-SIZE: 12px; FONT-FAMILY: arial}</STYLE>

    --------------------------^^^^---

    Hier muss der/die HTML-Tag(s) hin, für den/die die folgenden Angaben gelten sollen.
    Also:

    <STYLE type=text/css>
    BODY, P, TD {FONT-SIZE: 12px; FONT-FAMILY: arial}
    </STYLE>

    Grüße, piranja

    1. Danke!
      Ich hab Das mit dem Body {} vergessen!