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