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