skip to Main Content

At the moment I use <div style="font-family: 'Century Ghotic';">.

The problem is that it seems to get converted to "Arial".
How can I actually implement Century Ghotic via HTML3?

Longer version of the code I use:
<div style="font-family: 'Century Ghotic';">Freundlich gr&uuml;&szlig;t Sie <br /><br /><strong>Tironei</strong>

2

Answers


  1. You cannot. HTML 3 has no features for specifying the font family. (It also was never more than a draft specification, with the next actual release being HTML 3.2).

    Login or Signup to reply.
  2. To use Century Gothic font in your HTML3 document, you can specify it as follows:

    you can use this style
    style="font-family: Century Gothic, sans-serif;"

    it will reflect the data

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search