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