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