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