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