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