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