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