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