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