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