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