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