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