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