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