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