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