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