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