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