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