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