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