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