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