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