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