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