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