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