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