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