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