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