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