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