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