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