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