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