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