Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

How can I import a non-google font?

I am building some bilingual story / games using indigenous languages that have fonts using academic linguistic-ese things like x with a superscript w. Is there anyway to import these fonts into TWINE 2?

Comments

  • If you have hosting space, I think you should be able to use webfonts in your CSS via something like the Font Squirrel generator: http://www.fontsquirrel.com/tools/webfont-generator
  • Personally, i create a folder at the same level of my html story file and put the font i want in this folder.
    Thens in css:
    @font-face {
      font-family: 'dauphin';
      src: url(font/'dauphin.ttf');
    }
    #customers {
        font-family: "dauphin", Arial, Helvetica, sans-serif;
    	  text-align: center;
        width: 50%;
        border-collapse: collapse;
    }
    

Sign In or Register to comment.