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