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