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