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