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