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