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