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