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