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