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