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