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