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