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