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