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