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