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