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