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