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