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