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