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