Skip to main content
Inspiring
September 17, 2017
Question

Dynamic WebFont for Hebrew

  • September 17, 2017
  • 1 reply
  • 249 views

I try to use WebFont for Hebrew (the fonts from Google that support hebrew), but the font won't change

    This topic has been closed for replies.

    1 reply

    Preran
    Legend
    September 18, 2017

    To be sure, are you trying the procedure in Using Google fonts in Animate CC ?

    Thanks,

    Preran

    Ami HanyaAuthor
    Inspiring
    September 18, 2017

    I do all this steps.

    I found that i need to input the font on the CSS like this:

    <style>

         body

        {

            background-image: url("images/bg.png");

            direction: rtl;

            font-family:"Rubik","Helvetica Neue","Helvetica","Arial","sans-serif";

            font-family: 'Rubik', sans-serif;

        }

       @font-face {

            font-family: 'Rubik';

            font-style: normal;

            font-weight: 400;

            src: local('Rubik-Regular'), local('Rubik-Regular'), url(fonts/KOAvUwfoM3DiLr6_Ac8qkg.woff) format('woff');

            unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;

        }

    </style>