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