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