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