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