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