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