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