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