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