Web Font Loader Question:

How to use Web Font Loader?

Tweet Share WhatsApp

Answer:

To use the Web Font Loader library, just include it in your page and tell it which fonts to load. For example, you could load fonts from Google Fonts using the Web Font Loader hosted on Google Hosted Libraries using the following code.

<script src="//ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Droid Sans', 'Droid Serif']
}
});
</script>

Download Web Font Loader PDF Read All 6 Web Font Loader Questions
Previous QuestionNext Question
What is Web Font Loader?How to Configure Web Font Loader?