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