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