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