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