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