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