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