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