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