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