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