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