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