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