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