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