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