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