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