newbe: <input mit Schriftart

Hallo,
Ich möchte ein Formular mit einer bestimten schriftart machen,
also sowas:
<font face="Comic Sans MS">
<input type="text" size="10">
</font>
Im Klartext ich möchte das das was man in das Formular schreibt
ne beestimte Schriftart hat. Geht das? Wie?
Danke!
mgf Newbe

  1. hi,

    Ich möchte ein Formular mit einer bestimten schriftart machen,
    also sowas:
    <font face="Comic Sans MS">

    pfui bah - für formatierungen nutzen wir doch was? genau, CSS.

    btw: bancomicsans.com ;-)

    <input type="text" size="10">
    </font>
    Im Klartext ich möchte das das was man in das Formular schreibt
    ne beestimte Schriftart hat. Geht das? Wie?

    wende die CSS-Eigenschaften zur Schriftformatierung auf dein input-feld an.

    gruß,
    wahsaga

    --
    "Look, that's why there's rules, understand? So that you _think_ before you break 'em."
    1. <font face="Comic Sans MS">

      und abgesehen davon, daß hier der typographische Supergau eingesetzt wird, und daß Font-Tags benutzt werden, würde ich doch stark dazu raten, eine generische Schrift als Alternative anzugeben.
      font-family: "Comic Sans MS", sans-serif;

      Gruß, rob