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