Use on the webTotal Use [ 4765 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/4e6bc82c8a8712cae341923ddacda87b?family=Farah+Jawhar" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/4e6bc82c8a8712cae341923ddacda87b?family=Farah+Jawhar);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Farah Jawhar";
src: url("https://db.onlinewebfonts.com/t/4e6bc82c8a8712cae341923ddacda87b.eot");
src: url("https://db.onlinewebfonts.com/t/4e6bc82c8a8712cae341923ddacda87b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/4e6bc82c8a8712cae341923ddacda87b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/4e6bc82c8a8712cae341923ddacda87b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/4e6bc82c8a8712cae341923ddacda87b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/4e6bc82c8a8712cae341923ddacda87b.svg#Farah Jawhar")format("svg");
}
2CSS rules to specify fonts
font-family: "Farah Jawhar";