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