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