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