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