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