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