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