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