Use on the webTotal Use [ 6506 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/101df57ddcac22747b33094cf2b6925d?family=FacebookLetterFaces" 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/101df57ddcac22747b33094cf2b6925d?family=FacebookLetterFaces);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FacebookLetterFaces";
src: url("https://db.onlinewebfonts.com/t/101df57ddcac22747b33094cf2b6925d.eot");
src: url("https://db.onlinewebfonts.com/t/101df57ddcac22747b33094cf2b6925d.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/101df57ddcac22747b33094cf2b6925d.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/101df57ddcac22747b33094cf2b6925d.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/101df57ddcac22747b33094cf2b6925d.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/101df57ddcac22747b33094cf2b6925d.svg#FacebookLetterFaces")format("svg");
}
2CSS rules to specify fonts
font-family: "FacebookLetterFaces";