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