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