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