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