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