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