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