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