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