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