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