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