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