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