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