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