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