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