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