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