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