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