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