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