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