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