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