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