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