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