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